forked from bofh/fetsite
17 lines
541 B
Plaintext
Executable File
17 lines
541 B
Plaintext
Executable File
|
|
<% @modul.modulgruppen.each do |g| %>
|
|
<ul class="breadcrumb">
|
|
<li>
|
|
<%= link_to g.studium.name , studium_path(g.studium)%> <span class="divider">/</span></li>
|
|
<li><%= link_to g.name , modulgruppe_path(g)%></li>
|
|
<%end%>
|
|
</ul>
|
|
|
|
<p id="notice"><%= notice %></p>
|
|
<%= render @modul %>
|
|
|
|
|
|
<%= link_to 'Add LVA', new_lva_path(:modul_id =>@modul.id) %>
|
|
<%= link_to '<i class="icon-pencil"></i>'.html_safe+ I18n.t("common.edit") , edit_modul_path(@modul) %>
|
|
<%= link_to "Loeschen", [@modul],:method=>:delete ,:data => {:confirm =>"Are you sure" } %>
|