Add auth and ruby update
This commit is contained in:
parent
5d50194f39
commit
fbf6923835
43 changed files with 614 additions and 64 deletions
24
app/views/backoffice/show.html.erb
Normal file
24
app/views/backoffice/show.html.erb
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
<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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue