35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# File 'app/models/adminpanel/user.rb', line 35
def self.form_attributes
[
{
'name' => {
'type' => 'text_field',
'label' => 'Nombre',
'placeholder' => 'Nombre'
}
},
{
'email' => {
'type' => 'email_field',
'label' => 'Correo',
'placeholder' => 'Correo'
}
},
{
'password' => {
'type' => 'password_field',
'label' => I18n.t('model.attributes.password'),
'placeholder' => I18n.t('model.attributes.password'),
'show' => 'false'
}
},
{
'password_confirmation' => {
'type' => 'password_field',
'placeholder' => I18n.t('model.attributes.password_confirmation'),
'label' => I18n.t('model.attributes.password_confirmation'),
'show' => 'false'
}
},
{
'rol_id' => {
'type' => 'belongs_to',
'model' => 'Adminpanel::Rol',
'placeholder' => I18n.t('model.attributes.rol_id'),
'label' => I18n.t('model.attributes.rol_id')
}
},
]
end
|