ecole_eft_app/app/views/admin/photos/_form.html.haml
2013-07-18 01:23:48 +02:00

15 lines
440 B
Plaintext

=semantic_form_for [:admin, @photo], :remote => true do |f|
.content
= f.inputs do
= f.input :title, :label => "Titre :"
= f.input :description, :label => "Description :"
= f.input :tags_cache, :label => "Tags :"
%script
$("#photo_tags_cache").select2({
=raw'tags:'+Tag.tag_list.to_json+','
tokenSeparators: [","]});
.actions
=f.submit "Sauvegarder", :class => "btn"