Sha256: 135027d6a50869b8fa3280a71b76ff4e230e80fc6acf1b903ebfcb4ba4af43c1

Contents?: true

Size: 993 Bytes

Versions: 13

Compression:

Stored size: 993 Bytes

Contents

<dt>
  <%= label_tag :user_profile_name, t('activerecord.attributes.user_profile.name') %>
</dt>
<dd>
  <%=
    text_field_tag(
        'user_profile[name]',
        data['name'],
        size: nil,
        maxlength: 50
    )
  %>
</dd>

<dt>
  <%= label_tag :user_profile_patronymic, t('activerecord.attributes.user_profile.patronymic') %>
</dt>
<dd>
  <%=
    text_field_tag(
        'user_profile[patronymic]',
        data['patronymic'],
        size: nil,
        maxlength: 50
    )
  %>
</dd>

<dt>
  <%= label_tag :user_profile_surname, t('activerecord.attributes.user_profile.surname') %>
</dt>
<dd>
  <%=
    text_field_tag(
        'user_profile[surname]',
        data['surname'],
        size: nil,
        maxlength: 50
    )
  %>
</dd>

<dt>
  <%= label_tag :user_profile_gender, t('activerecord.attributes.user_profile.gender') %>
</dt>
<dd>
  <%=
    select_tag(
        'user_profile[gender]',
        options_for_select(genders_for_select, data['gender'])
    )
  %>
</dd>

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
biovision-base-0.41.190905.0 app/views/users/form/_profile_data.html.erb
biovision-base-0.39.190804.1 app/views/users/form/_profile_data.html.erb
biovision-base-0.37.190607.0 app/views/users/form/_profile_data.html.erb
biovision-base-0.36.190526.0 app/views/users/form/_profile_data.html.erb
biovision-base-0.34.190331.1 app/views/users/form/_profile_data.html.erb
biovision-base-0.22.180920.0 app/views/users/form/_profile_data.html.erb
biovision-base-0.21.180812.0 app/views/users/form/_profile_data.html.erb
biovision-base-0.20.180731.0 app/views/users/form/_profile_data.html.erb
biovision-base-0.19.180703.1 app/views/users/form/_profile_data.html.erb
biovision-base-0.17.180619 app/views/users/form/_profile_data.html.erb
biovision-base-0.15.180502 app/views/users/form/_profile_data.html.erb
biovision-base-0.15.180415 app/views/users/form/_profile_data.html.erb
biovision-base-0.14.180326 app/views/users/form/_profile_data.html.erb