]> git.openstreetmap.org Git - rails.git/blob - app/views/redactions/show.html.erb
162dd6bfe4617e07bab76e44c6d512134b710d4a
[rails.git] / app / views / redactions / show.html.erb
1 <% @title = t('redaction.show.title') %>
2 <h1><%= t('redaction.show.heading', :title => @redaction.title) %></h1>
3
4 <p>
5   <b><%= t 'redaction.show.user' %></b>
6   <%= link_to(@redaction.user.display_name, {:controller => 'user', :action => 'view', :display_name => @redaction.user.display_name}) %>
7 </p>
8 <p>
9   <b><%= t 'redaction.show.description' %></b>
10   <%= @redaction.description.to_html %>
11 </p>
12
13 <% if @user and @user.moderator? %>
14 <%= link_to t('redaction.show.edit'), edit_redaction_path(@redaction) %>
15 <%= button_to(t('redaction.show.destroy'), @redaction, :confirm => t('redaction.show.confirm'), :method => "delete", :remote => true) %>
16 <% end %>