diff --git a/app/views/lvas/_nested_fields.html.erb b/app/views/lvas/_nested_fields.html.erb
index 690ae4b..8fef785 100644
--- a/app/views/lvas/_nested_fields.html.erb
+++ b/app/views/lvas/_nested_fields.html.erb
@@ -9,8 +9,11 @@
<%= f.input :name %> |
<%= f.input :ects, :input_html => { "style"=>"width:4em" },:size=>5 %>
- <%= f.input :stunden, :input_html => { "style"=>"width:4em" }%> |
- <%= f.input :typ, :input_html => { "style"=>"width:4em" }%> |
+ <%= f.input :stunden, :input_html => { "style"=>"width:4em" }%>
+
+
+ <%= f.input :typ, :input_html => { "style"=>"width:4em" }%>
+ |
<%= f.input :semester , :input_html=>{:style=>"height:8em"},:collection=>@semester%>
|
diff --git a/app/views/moduls/edit_lvas.html.erb b/app/views/moduls/edit_lvas.html.erb
index 9fdea1c..3c49360 100644
--- a/app/views/moduls/edit_lvas.html.erb
+++ b/app/views/moduls/edit_lvas.html.erb
@@ -1,18 +1,18 @@
<%= semantic_form_for "lvas[]", :url=>update_lvas_modul_path(@modul) do |ff|%>
<% i = 0 %>
+
<% @lvas.each do |lva|%>
-<% i = i +1 %>
-<%= semantic_fields_for "lvas[#{i}]", lva do |f|%>
+ <% i = i +1 %>
+ <%= semantic_fields_for "lvas[#{i}]", lva do |f|%>
<%= render 'lvas/nested_fields', :f => f,:lva=>lva %>
-
-<% end%>
+ <% end%>
<% end %>
-
+
<%= ff.actions do %>
<%= ff.action :submit, :as => :button %>
<%= ff.action :cancel, :as => :link %>
- <% end %>
+<% end %>
<% end %>