agenda-libre-ruby/app/views/events/_form.html.haml

85 lines
2.6 KiB
Plaintext
Raw Normal View History

2014-07-01 15:50:39 +02:00
= form_for @event, url: (@moderation ? moderation_path(@moderation) : @event.persisted? ? event_path(@event) : nil) do |f|
2013-12-28 23:45:13 +01:00
- if @event.errors.any?
2014-05-31 23:13:43 +02:00
#error_explanation.error.flash
2013-12-28 23:45:13 +01:00
%h2= "#{pluralize(@event.errors.count, "error")} prohibited this event from being saved:"
2014-05-31 23:13:43 +02:00
- @event.errors.full_messages.each do |msg|
%p= msg
2013-12-28 23:45:13 +01:00
2014-01-06 11:22:39 +01:00
- unless @event.id
:markdown
#{t '.subtitle'}
#advises
:markdown
#{t '.advises'}
- else
= hidden_field_tag :secret, params[:secret]
2013-12-28 23:45:13 +01:00
.field
.helper
:markdown
#{t '.title_helper'}
2013-12-28 23:45:13 +01:00
= f.label :title
= f.text_field :title, required: true, size: 70
2013-12-28 23:45:13 +01:00
.field
= f.label :start_time
= f.datetime_local_field :start_time, required: true, size: 14,
value: l(@event.start_time || Time.now + 1.day + 1.hour - Time.now.min.minutes, format: :manual),
placeholder: t('time.formats.manual')
2013-12-28 23:45:13 +01:00
.field
= f.label :end_time
= f.datetime_local_field :end_time, required: true, size: 14,
value: l(@event.end_time || Time.now + 1.day + 2.hour - Time.now.min.minutes, format: :manual),
placeholder: t('time.formats.manual')
2013-12-28 23:45:13 +01:00
.field
.helper
:markdown
#{t '.description_helper'}
= f.label :description
= f.text_area :description, required: true, class: 'tinymce', rows: 29, cols: 80
= tinymce language: 'fr_FR'
2013-12-28 23:45:13 +01:00
.field
= f.label :city
= f.text_field :city, required: true, size: 70, list: :cities
%datalist#cities
- City.connection.select_values('select distinct name from cities join events on name=city group by city order by count(*) desc').each do |name|
%option= name
2013-12-28 23:45:13 +01:00
.field
= f.label :region
= f.select :region,
2014-07-01 15:50:39 +02:00
options_from_collection_for_select(Region.all, 'id', 'name', @event.region)
2013-12-28 23:45:13 +01:00
.field
= f.label :locality
= f.select :locality,
2014-01-06 11:22:39 +01:00
options_for_select([[t('attributes.locality_0'), 0], [t('attributes.locality_1'), 1]], @event.locality)
2013-12-28 23:45:13 +01:00
.field
.helper
:markdown
#{t '.url_helper'}
= f.label :url
= f.text_field :url, required: true, size: 70, placeholder: 'Ex: http://april.org'
2013-12-28 23:45:13 +01:00
.field
.helper
:markdown
#{t '.contact_helper'}
= f.label :contact
2014-05-26 01:06:43 +02:00
= f.text_field :contact, required: true, size: 70
2013-12-28 23:45:13 +01:00
.field
.helper
:markdown
#{t '.submitter_helper'}
2013-12-28 23:45:13 +01:00
= f.label :submitter
2014-05-26 01:06:43 +02:00
= f.text_field :submitter, required: true, size: 70
2013-12-28 23:45:13 +01:00
.field
.helper
:markdown
#{t '.tags_helper'}
2013-12-28 23:45:13 +01:00
= f.label :tags
= f.text_field :tags, size: 70
2013-12-28 23:45:13 +01:00
.actions
= f.submit t('.visualise'), name: :visu
= f.submit t('.save')