Files
danbooru/app/views/layouts/_more_links.html.erb
albert f2f524b87f * Created js popup for some of the secondary links in the main navbar
* aliases/implications must now be approved
* anyone can now submit an alias
2011-10-24 01:01:45 -04:00

14 lines
499 B
Plaintext

<div id="more-links">
<ul>
<%= nav_link_to("Artists", artists_path(:order => "date")) %>
<%= nav_link_to("Tags", tags_path(:order => "date")) %>
<% if CurrentUser.is_moderator? %>
<%= nav_link_to("Aliases", tag_aliases_path) %>
<%= nav_link_to("Implications", tag_implications_path) %>
<% end %>
<%= nav_link_to("Pools", pools_path) %>
<% if CurrentUser.is_janitor? %>
<%= nav_link_to("Dashboard", moderator_dashboard_path) %>
<% end %>
</ul>
</div>