]> git.openstreetmap.org Git - rails.git/blob - app/views/notifier/changeset_comment_notification.html.erb
Moved message table HTMl to a partial template
[rails.git] / app / views / notifier / changeset_comment_notification.html.erb
1 <% content_for :body do %>
2   <p style="margin: 0">
3     <% if @owner %>
4       <%= raw t "notifier.changeset_comment_notification.commented.your_changeset", :commenter => link_to_user(@commenter), :time => @time %>
5     <% else %>
6       <%= raw t "notifier.changeset_comment_notification.commented.commented_changeset", :commenter => link_to_user(@commenter), :time => @time, :changeset_author => @changeset_author %>
7     <% end %>
8     <% if @changeset_comment %>
9       <%= raw t "notifier.changeset_comment_notification.commented.partial_changeset_with_comment", :changeset_comment => content_tag("em", @changeset_comment) %>
10     <% else %>
11       <%= t "notifier.changeset_comment_notification.commented.partial_changeset_without_comment" %>
12     <% end %>
13   </p>
14
15   <%= render "notifier/user_message_table", :captured => capture { %>
16     <%= @comment.to_html %>
17   <% } %>
18
19   <p>
20     <%= raw t 'notifier.changeset_comment_notification.details', :url => content_tag("nobr", link_to(@changeset_url, @changeset_url)) %>
21   </p>
22 <% end %>
23
24 <% content_for :footer do %>
25   <p>
26     <%= raw t 'notifier.changeset_comment_notification.unsubscribe', :url => content_tag("nobr", link_to(@changeset_url, @changeset_url, :style => "color: #222")) %>
27   </p>
28 <% end %>