Files
fetsite/app/views/studien/_form.html.erb
Thomas Blazek cc002d4291 Init
2013-07-22 15:49:19 +02:00

14 lines
383 B
Plaintext
Executable File

<%= tinymce_assets %>
<%= semantic_form_for @studium do |f| %>
<%= f.inputs do %>
<%= f.input :zahl %>
<%= f.input :name,:append=>"NAME" %>
<%= f.input :desc, :as=>:tinymce_text %>
<%= f.input :typ, :as=>:radio, :collection=>["Bachelor","Master"]%>
<% end %>
<%= tinymce %>
<%= f.actions do %>
<%= f.action :submit, :as => :input %>
<% end %>
<% end %>