forked from bofh/fetsite
16 lines
499 B
Plaintext
16 lines
499 B
Plaintext
<%= semantic_form_for "lvas[]", :url=>show_tiss_modul_path(params[:modul_id]) do |ff|%>
|
|
<% for i in 1..5 do %>
|
|
|
|
<%= semantic_fields_for "lvas[#{i}]" do |f| %>
|
|
<%= f.input :lvanr %>
|
|
<% f.input :sem , :input_html => { "style"=>"width:7em" },:as=>:select, :collection=>["2012S", "2012W","2013S","2013W","2014S","2014W","2015S","2015W"] %>
|
|
<% end %>
|
|
|
|
<% end %>
|
|
<%= ff.actions do %>
|
|
<%= ff.action :submit, :as => :button %>
|
|
<%= ff.action :cancel, :as => :link %>
|
|
<% end %>
|
|
|
|
<% end %>
|