_form.html.haml
1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/Author Igor Portela - www.igorportela.com
= form_for(@wikivideo) do |f|
- if @wikivideo.errors.any?
#error_explanation
%h2
= pluralize(@wikivideo.errors.count, "error")
prohibited this wikivideo from being saved:
%ul
- @wikivideo.errors.full_messages.each do |msg|
%li= msg
.field
= f.label :signal_name
%br/
= f.text_field :signal_name
.field
= f.label :movement_type
%br/
= f.text_field :movement_type
.field
= f.label :amount_of_hands
%br/
= f.text_field :amount_of_hands
.field
= f.label :facial_expression
%br/
= f.text_field :facial_expression
.field
= f.label :repeat_flag_primary
%br/
= f.text_field :repeat_flag_primary
.field
= f.label :primary_configuration_fingers
%br/
= f.text_field :primary_configuration_fingers
.field
= f.label :primary_orientation_of_hands
%br/
= f.text_field :primary_orientation_of_hands
.field
= f.label :subdivision_of_articulation_primary
%br/
= f.text_field :subdivision_of_articulation_primary
.field
= f.label :localization_of_articulation_primary
%br/
= f.text_field :localization_of_articulation_primary
.field
= f.label :time_spent
%br/
= f.text_field :time_spent
.field
= f.label :user_id
%br/
= f.text_field :user_id
.actions
= f.submit