Files
fetsite/app/views/studien/_tabs.html.erb
Andreas Stephanides 4b71964e26 studien visible
2015-05-06 15:10:16 +02:00

26 lines
716 B
Plaintext

<ul class="nav nav-tabs">
<% if request.fullpath == studien_path%>
<li class="active">
<% else %>
<li>
<% end %>
<%= link_to I18n.t("studien.allestudien"), studien_path %> </li>
<% for s in @studien %>
<% if !@studium.nil? && s == @studium %>
<li class="active" title="<%= s.name %>">
<%= link_to s.title_context, s %>
</li>
<% else %>
<li title="<%= s.name %>"> <%= link_to s.title_context, s %></li>
<% end %>
<% end %>
<% if request.fullpath == studien_verwalten_path %>
<li class="active pull-right">
<% else %>
<li class="pull-right">
<% end %>
<%= link_to I18n.t("studien.verwaltung.title"), studien_verwalten_path if can? :verwalten, Studium %>
</li>
</ul>