]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/redactions/index.html.erb
Add articles before "exit" and "roundabout"
[rails.git] / app / views / redactions / index.html.erb
index e3388fafa006b97ce74e1916d37f877ef5b89531..26dad64cfe1907eb415acb84f3880be59abdc8e5 100644 (file)
@@ -4,7 +4,15 @@
 <% end %>
 
 <% unless @redactions.empty? %>
-  <%= render :partial => "redactions" %>
+  <ul id="redaction_list">
+    <%= render @redactions %>
+  </ul>
 <% else %>
   <p><%= t ".empty" %></p>
 <% end %>
+
+<% if can?(:create, Redaction) %>
+  <div>
+    <%= link_to t(".new"), new_redaction_path, :class => "btn btn-outline-primary" %>
+  </div>
+<% end %>