openstreetmap-website/app/views/messages/inbox.html.erb
Andy Allan dfedf85b6c Use _html suffix to avoid using raw when displaying translated strings
This is safer than raw, since any user input is still escaped.
2019-12-20 10:29:07 +01:00

28 lines
802 B
Text

<% content_for :head do %>
<%= javascript_include_tag "messages" %>
<% end %>
<% content_for :heading do %>
<h2><%= t ".my_inbox" %>/<%= link_to t(".outbox"), outbox_messages_path %></h2>
<% end %>
<h4><%= render :partial => "message_count" %></h4>
<% if current_user.messages.size > 0 %>
<table class="messages">
<thead>
<tr>
<th><%= t ".from" %></th>
<th><%= t ".subject" %></th>
<th><%= t ".date" %></th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<%= render :partial => "message_summary", :collection => current_user.messages %>
</tbody>
</table>
<% else %>
<div><%= t(".no_messages_yet_html", :people_mapping_nearby_link => link_to(t(".people_mapping_nearby"), user_path(current_user))) %></div>
<% end %>