20 lines
517 B
Plaintext
20 lines
517 B
Plaintext
<% if current_user %>
|
|
<% if current_user.administrator? %>
|
|
<li>
|
|
<%= link_to t("layouts.header.administration"), admin_root_path %>
|
|
</li>
|
|
<% end %>
|
|
|
|
<% if current_user.moderator? || current_user.administrator? %>
|
|
<li>
|
|
<%= link_to t("layouts.header.moderation"), moderation_root_path %>
|
|
</li>
|
|
<% end %>
|
|
|
|
<% if current_user.valuator? || current_user.administrator? %>
|
|
<li>
|
|
<%= link_to t("layouts.header.valuation"), valuation_root_path %>
|
|
</li>
|
|
<% end %>
|
|
<% end %>
|