a11yist/app/views/backoffice/show.html.erb

24 lines
628 B
Text
Raw Normal View History

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>
<p>
<i class="bi bi-check2"></i>
<%= Check.count %>
<%= link_to Check.model_name.human(count: Check.count), :checks %>
</p>
<p>
<i class="bi bi-link"></i>
<%= Link.count %>
<%= link_to Link.model_name.human(count: Link.count), :links %>
</p>
<p>
<%= link_to "Backup herunterladen", admin_backup_url, class: "btn btn-secondary", data: { turbo_prefetch: false, frame: "_top", turbo: false } %>
</p>