]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/redactions/index.html.erb
Remove unused timer from new note js controller
[rails.git] / app / views / redactions / index.html.erb
index 1fa683de8b65a307402e61a95196437f8cdcd24c..26dad64cfe1907eb415acb84f3880be59abdc8e5 100644 (file)
@@ -1,8 +1,18 @@
-<% @title = t('redaction.index.title') %>
-<h1><%= t('redaction.index.heading') %></h1>
+<% @title = t(".title") %>
+<% content_for :heading do %>
+  <h1><%= t(".heading") %></h1>
+<% end %>
 
 <% unless @redactions.empty? %>
 
 <% unless @redactions.empty? %>
-  <%= render :partial => 'redactions' %>
+  <ul id="redaction_list">
+    <%= render @redactions %>
+  </ul>
 <% else %>
 <% else %>
-  <p><%= t 'redaction.index.empty' %></p>
+  <p><%= t ".empty" %></p>
+<% end %>
+
+<% if can?(:create, Redaction) %>
+  <div>
+    <%= link_to t(".new"), new_redaction_path, :class => "btn btn-outline-primary" %>
+  </div>
 <% end %>
 <% end %>