<% 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 %>