forked from bofh/fetsite
14 lines
303 B
Plaintext
14 lines
303 B
Plaintext
<%= semantic_form_for @lecturer do |f| %>
|
|
<%= f.inputs do %>
|
|
<%= f.input :name %>
|
|
<%= f.input :email %>
|
|
<%= f.input :oid %>
|
|
<%= f.input :picture, :as=>:file %>
|
|
<%= f.input :lvas %>
|
|
<% end %>
|
|
|
|
<%= f.actions do %>
|
|
<%= f.action :submit, :as => :input %>
|
|
<% end %>
|
|
<% end %>
|