forked from bofh/fetsite
25 lines
558 B
Plaintext
25 lines
558 B
Plaintext
<ul class="nav nav-tabs">
|
|
<% if request.fullpath == studien_path%>
|
|
<li class="active">
|
|
<% else %>
|
|
<li>
|
|
<% end %>
|
|
<%= link_to "Alle Studien", studien_path %> </li>
|
|
<% for s in Studium.all %>
|
|
<% if !@studium.nil? && s == @studium %>
|
|
<li class="active">
|
|
<%= link_to s.name, s %>
|
|
</li>
|
|
<% else %>
|
|
<li> <%= link_to s.name, s %></li>
|
|
<% end %>
|
|
<% end %>
|
|
<% if request.fullpath == studien_verwalten_path %>
|
|
<li class="active">
|
|
<% else %>
|
|
<li>
|
|
<% end %>
|
|
<%= link_to "Verwaltung", studien_verwalten_path %>
|
|
</li>
|
|
</ul>
|