1
0
mirror of https://github.com/fspc/bike-database.git synced 2025-02-22 17:23:22 -05:00
bike-database/app/views/clients/_form.html.haml
2014-09-21 18:23:15 -05:00

12 lines
397 B
Plaintext

= form_for @client, html: {class: 'form-horizontal'} 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 |msg|
%li= msg
= render 'fields', f: f
.row
.actions.col-sm-offset-2
= f.submit class: "btn btn-default"