blob: a8c4f5dcc6b79381071e318c7c3c2335d15fe07b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<h1>Translations — <%= title_for_node(@node) %></h1>
<div class="node_content node_info_group">
<div class="node_info_group_items">
<% @translations.each do |t| %>
<div class="node_info_item">
<span class="node_info_label"><%= t[:locale].to_s.upcase %></span>
<% if t[:exists] %>
<%= t[:title] %> — updated <%= t[:updated_at] %>
<% if t[:outdated] %><span class="warning">may be outdated</span><% end %>
<%= link_to 'Edit', edit_node_translation_path(@node, t[:locale]) %>
<% else %>
<span class="field_hint">Not yet translated.</span>
<%= link_to 'Add', edit_node_translation_path(@node, t[:locale]) %>
<% end %>
</div>
<% end %>
</div>
</div>
|