2024-09-22 21:57:05 +02:00
|
|
|
<h1>Einstellungen</h1>
|
|
|
|
|
|
|
|
|
|
<p>Hier wird es irgendwann mal was einzustellen geben.</p>
|
|
|
|
|
<p>
|
|
|
|
|
<i class="bi bi-list-check"></i>
|
|
|
|
|
<%= Checklist.count %>
|
|
|
|
|
<%= link_to Checklist.model_name.human(count: Checklist.count), :checklists %>
|
|
|
|
|
</p>
|
|
|
|
|
|
2025-05-16 19:02:33 +02:00
|
|
|
<p>
|
|
|
|
|
<i class="bi bi-rulers"></i>
|
|
|
|
|
<%= Guideline.count %>
|
|
|
|
|
<%= link_to Guideline.model_name.human(count: Guideline.count), :guidelines %>
|
|
|
|
|
</p>
|
|
|
|
|
|
2024-09-22 21:57:05 +02:00
|
|
|
<p>
|
|
|
|
|
<i class="bi bi-check2"></i>
|
|
|
|
|
<%= Check.count %>
|
|
|
|
|
<%= link_to Check.model_name.human(count: Check.count), :checks %>
|
|
|
|
|
</p>
|
|
|
|
|
|
2024-11-01 03:26:46 +01:00
|
|
|
<p class="mb-3">
|
2024-09-22 21:57:05 +02:00
|
|
|
<i class="bi bi-link"></i>
|
|
|
|
|
<%= Link.count %>
|
|
|
|
|
<%= link_to Link.model_name.human(count: Link.count), :links %>
|
|
|
|
|
</p>
|
|
|
|
|
|
2024-11-01 03:26:46 +01:00
|
|
|
<h2>Backup</h2>
|
2024-10-27 03:38:15 +01:00
|
|
|
<ul class="ps-0" style="list-style-type: none">
|
|
|
|
|
<li>
|
|
|
|
|
<%= link_to "XLSX Backup herunterladen", admin_backup_url(format: :xlsx), class: " ", data: { turbo_prefetch: false, frame: "_top", turbo: false } %>
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<%= link_to "ZIP Backup herunterladen", admin_backup_url(format: :zip), class: " ", data: { turbo_prefetch: false, frame: "_top", turbo: false } %>
|
|
|
|
|
</li>
|
2025-05-16 19:02:33 +02:00
|
|
|
</ul>
|