mmsc_app/app/views/admin/m_events/_form.html.haml
Nicolas Bally a6aa1f6074 Initial
2020-05-25 11:40:11 +02:00

47 lines
1.5 KiB
Plaintext

=semantic_form_for [:admin, @m_event], :remote => true do |f|
.content
=f.inputs do
= f.input :m_event_type_title, :label => "Type d'évenement :", :collection => ["Ecole / Stage de pilotage", "Roulage encadré", "Roulage libre"]
=# f.input :circuit, :label => "Circuit :", :member_label => :member_label, :collection => Circuit.order("name").all
=render :partial => "qi/autocomplete", :locals => {:form => f, :field => :circuit, :label => "Circuit :"}
=render :partial => "qi/autocomplete", :locals => {:form => f, :field => :organisateur, :label => "Organisateur :"}
=# f.input :organisateur, :label => "Organisateur :", :member_label => :member_label, :collection => Organisateur.order("name").all
= f.input :start_at, :label => "Date de début :", :as => :date
= f.input :end_at, :label => "Date de fin :" , :as => :date
= f.input :title, :label => "Titre :"
= f.input :link, :label => "Lien réservation :"
= f.input :description, :label => "Description :" , :input_html => {:class => "redactor_textarea"}
= f.input :image_file_id, :label => "Image :", :as => :qi_image_select
.actions=f.submit "sauvegarder", :class => "btn btn-primary"
:javascript
$(".redactor_textarea").redactor({
focus: true,
callbacks: {
init: function()
{
}
}
});
:css
.redactor-editor{
padding: 24px 32px;
border: 1px solid rgba(0, 0, 0, 0.07);
}