Files
danbooru/app/views/status/_table.html.erb
evazion c97186abd7 /status: add missing template files.
Add missing templates that were forgotten in 7a87225ac.
2020-12-19 00:27:24 -06:00

20 lines
323 B
Plaintext

<%# rows %>
<table class="striped">
<thead>
<tr>
<% rows.first.keys.each do |key| %>
<th><%= key.humanize %></th>
<% end %>
</tr>
</thead>
<% rows.each do |row| %>
<tr>
<% row.each do |key, value| %>
<td><%= value %></td>
<% end %>
</tr>
<% end %>
</table>