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

23 lines
598 B
Text
Raw Normal View History

2024-07-22 21:47:06 +02:00
<h1>A11yDive</h1>
<h2>Dashboard</h1>
<p>
<i class="bi bi-journal-text"></i>
<%= Report.count %>
<%= link_to Report.model_name.human(count: Report.count), :reports %>
</p>
<p>
<i class="bi bi-list-check"></i>
<%= Checklist.count %>
<%= link_to Checklist.model_name.human(count: Checklist.count), :checklists %>
</p>
<p>
2024-07-19 02:29:18 +02:00
<i class="bi bi-check2"></i>
<%= Check.count %>
<%= link_to Check.model_name.human(count: Check.count), :checks %>
2024-07-22 21:47:06 +02:00
</p>
2024-07-24 01:48:27 +02:00
<p>
<%= link_to "Backup herunterladen", admin_backup_url, class: "btn btn-secondary", data: { turbo_prefetch: false, frame: "_top", turbo: false } %>
</p>