]> git.openstreetmap.org Git - rails.git/blob - app/views/notifier/changeset_comment_notification.html.erb
Fix rubocop warnings
[rails.git] / app / views / notifier / changeset_comment_notification.html.erb
1 <p><%= t 'notifier.changeset_comment_notification.greeting' %></p>
2
3 <p>
4   <% if @owner %>
5     <%= t "notifier.changeset_comment_notification.commented.your_changeset", :commenter => @commenter, :time => @time %>
6   <% else %>
7     <%= t "notifier.changeset_comment_notification.commented.commented_changeset", :commenter => @commenter, :time => @time, :changeset_author => @changeset_author %>
8   <% end %>
9   <% if @changeset_comment %>
10     <%= t "notifier.changeset_comment_notification.commented.partial_changeset_with_comment", :changeset_comment => @changeset_comment %>
11   <% else %>
12     <%= t "notifier.changeset_comment_notification.commented.partial_changeset_without_comment" %>
13   <% end %>
14 </p>
15
16 ==
17 <%= @comment.to_html %>
18 ==
19
20 <p><%= raw t 'notifier.changeset_comment_notification.details', :url => link_to(@changeset_url, @changeset_url) %></p>