Files
fetsite/app/views/studien/_form.html.erb
Andreas Stephanides 3d11400d5e GitHub Account angelegt
2013-02-12 02:05:12 +01:00

14 lines
383 B
Plaintext

<%= 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 %>