1
0
mirror of https://github.com/projekteuler/projekteuler.git synced 2025-12-10 08:46:41 +01:00
projekteuler/app/views/translations/index.html.erb

22 lines
459 B
Plaintext

<h1>Listing translations</h1>
<%= render 'translation_pagination' %>
<table class="table table-striped table-bordered">
<thead>
<tr>
<th>ID</th>
<th>Title</th>
</tr>
</thead>
<tbody>
<% @translations.each do |translation| %>
<tr>
<td><%= translation.id %></td>
<td><%= link_to translation.title, translation %></td>
</tr>
<% end %>
</tbody>
</table>
<%= render 'translation_pagination' %>
<br>