MorningPeak/app/views/clients/_form.html.slim
Arthur Poulet b33dd3f3cc Update all forms for admin
- forms are full bootstraped
- datepicker in jquery for date fields
- installation of jquery ui
2015-07-21 07:21:58 +02:00

36 lines
1.3 KiB
Plaintext

= form_for @client do |f|
- if @client.errors.any?
#error_explanation
h2 = "#{pluralize(@client.errors.count, "error")} prohibited this client from being saved:"
ul
- @client.errors.full_messages.each do |message|
li = message
.form-horizontal
.form-group
.field
= f.label :name, class: "sr-only"
= f.text_field :name, class: "form-control", placeholder: "Name"
.form-group
.field
= f.label :url, class: "sr-only"
= f.text_field :url, class: "form-control", placeholder: "URL"
.form-group
.field
= f.label :activity, class: "sr-only"
= f.text_field :activity, class: "form-control", placeholder: "Acitvity"
.form-group
.field
= f.label :contact_reasons, class: "sr-only"
= f.text_area :contact_reasons, class: "form-control", placeholder: "Contact reasons"
.form-horizontal
.form-group
.field
= f.label :user_id, class: "sr-only"
= f.text_field :user_id, class: "form-control", placeholder: "User ID"
.form-group
.field
= f.label :contact_id, class: "sr-only"
= f.text_field :contact_id, class: "form-control", placeholder: "Main Contact ID"
.actions = f.submit class: "btn btn-success"