mirror of
https://github.com/projekteuler/projekteuler.git
synced 2025-12-10 16:46:42 +01:00
26 lines
886 B
Plaintext
26 lines
886 B
Plaintext
<% provide(:title, Translation.model_name.human(count: 2)) %>
|
|
|
|
<h1><%= Translation.model_name.human(count: 2) %></h1>
|
|
|
|
<%= render 'translation_pagination' %>
|
|
<table class="table table-striped table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th><%= Translation.human_attribute_name(:created_at) %></th>
|
|
<th><%= Translation.human_attribute_name(:problem_id) %></th>
|
|
<th><%= Translation.human_attribute_name(:title) %></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<% @translations.each do |translation| %>
|
|
<tr>
|
|
<td><div data-toggle="tooltip" data-placement="left" title="<%= l translation.created_at %>"><%= time_ago_in_words(translation.created_at) %></div></td>
|
|
<td><%= translation.problem_id %></td>
|
|
<td><%= link_to translation.title, [:admin, translation] %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
<%= render 'translation_pagination' %>
|
|
<br> |