16 lines
441 B
Plaintext
16 lines
441 B
Plaintext
<%= fa_icon("calendar 2x") %>
|
|
<p id="notice"><%= notice %></p>
|
|
|
|
<%= semantic_form_for @calentry, :remote=>true, :html=>{:class=>"inline"} do |f| %>
|
|
|
|
<%= f.input :start, :as => :datetimepicker %>
|
|
<%= f.input :dauer , :as => :string, :append=>"h" %>
|
|
<%= f.input :object_id , :as => :hidden %>
|
|
<%= f.input :object_type , :as => :hidden %>
|
|
<%= f.input :typ , :as => :hidden %>
|
|
|
|
|
|
<%= f.action :submit, :as => :input_ %>
|
|
|
|
<% end %>
|