openstreetmap-website/app/views/redactions/index.html.erb
2024-09-11 14:14:35 +03:00

18 lines
393 B
Text

<% @title = t(".title") %>
<% content_for :heading do %>
<h1><%= t(".heading") %></h1>
<% end %>
<% unless @redactions.empty? %>
<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 %>