Files
danbooru/app/views/dmails/_secondary_links.html.erb
2013-03-23 10:27:25 -04:00

11 lines
642 B
Plaintext

<% content_for(:secondary_links) do %>
<menu>
<li><%= link_to "All", dmails_path %></li>
<li><%= link_to "Received", dmails_path(:search => {:owner_id => CurrentUser.id, :to_id => CurrentUser.id}, :folder => "received") %></li>
<li><%= link_to "Sent", dmails_path(:search => {:owner_id => CurrentUser.id, :from_id => CurrentUser.id}, :folder => "sent") %></li>
<li><%= link_to "New", new_dmail_path %></li>
<li><%= link_to "Search", search_dmails_path %></li>
<li><%= link_to "Mark all as read", {:controller => "dmails", :action => "mark_all_as_read"}, :method => :post, :remote => true %></li>
</menu>
<% end %>