mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 12:16:06 +08:00
22 lines
559 B
Text
22 lines
559 B
Text
|
<ol class="breadcrumb breadcrumb-teams">
|
||
|
<% if action_name == "teams" %>
|
||
|
<li class="active">
|
||
|
<%= t("users.settings.teams.breadcrumbs.all") %>
|
||
|
</li>
|
||
|
<% else %>
|
||
|
<li>
|
||
|
<%= link_to t("users.settings.teams.breadcrumbs.all"), teams_path %>
|
||
|
</li>
|
||
|
<% end %>
|
||
|
|
||
|
<% if action_name == 'team' %>
|
||
|
<li class="active">
|
||
|
<%= @team.name %>
|
||
|
</li>
|
||
|
<% elsif action_name == 'new_team' || action_name == 'create_team' %>
|
||
|
<li class="active">
|
||
|
<%= t('users.settings.teams.breadcrumbs.new_team') %>
|
||
|
</li>
|
||
|
<% end %>
|
||
|
</ol>
|