]> git.openstreetmap.org Git - rails.git/blob - app/views/redactions/index.html.erb
Merge remote-tracking branch 'upstream/pull/5189'
[rails.git] / app / views / redactions / index.html.erb
1 <% @title = t(".title") %>
2 <% content_for :heading do %>
3   <h1><%= t(".heading") %></h1>
4 <% end %>
5
6 <% unless @redactions.empty? %>
7   <ul id="redaction_list">
8     <%= render @redactions %>
9   </ul>
10 <% else %>
11   <p><%= t ".empty" %></p>
12 <% end %>
13
14 <% if can?(:create, Redaction) %>
15   <div>
16     <%= link_to t(".new"), new_redaction_path, :class => "btn btn-outline-primary" %>
17   </div>
18 <% end %>