Files
fetsite/app/views/studien/index.html.erb
2013-02-13 00:57:54 +01:00

15 lines
256 B
Plaintext

<h1><%= I18n.t("studien.list") %></h1>
<% @studien.each do |studium| %>
<h2><%= link_to studium.zahl + " "+ studium.typ+" " + studium.name, studium_path(studium) %></h2>
<% end %>
<br />
<%= link_to I18n.t("studien.new"), new_studium_path %>