%= render "shared/errors", obj: @member %>
| <%= imgf.label :uploaded_image %> |
<%= imgf.file_field :uploaded_image %>
<% if !imgf.object.new_record? && imgf.object.errors.empty? %>
<%= member_image_tag @member, size: "128x128" %>
<%= imgf.check_box :_destroy %>
<%= imgf.label :_destroy %>
<%= imgf.hidden_field :id %>
<% end %>
|
|---|---|
| <%= form.label :login_name %> | <%= form.text_field :login_name %> |
| <%= form.label :email %> | <%= form.text_field :email %> |
| <%= form.label :hashcode %> | <%= @member.hashcode %> |
| <%= form.label :status %> | <%= form.check_box :status, size: 8 %> |
| <%= Member.human_attribute_name(:administrator) %> | <%= form.check_box :administrator %> <%= form.label :administrator %> |
| <%= t('views.accounts.edit.passwd_comment') %> | |
| <%= form.label :password %> | <%= form.password_field :password %> |
| <%= form.label :password_confirmation %> | <%= form.password_field :password_confirmation %> |
| <%= t('views.accounts.edit.sec_question_comment') %> | |
| <%= form.label :sec_question %> | <%= form.select :sec_question, [[Member.sec_question_text("q1"), "q1"],[Member.sec_question_text("q2"), "q2"],[Member.sec_question_text("q3"), "q3"]]%> <%= form.text_field :sec_answer %> <%= form.hidden_field :pub_lang %> |
| <%= t('views.accounts.edit.in_japanese')%> | |
| <%= t('views.accounts.edit.name')%> | <%= form.label :name_sei %> <%= form.text_field :name_sei ,size: 10%> <%= form.label :name_mei %> <%= form.text_field :name_mei ,size: 10%> |
|---|---|
| <%= t('views.accounts.edit.kana')%> | <%= form.label :name_sei_kana %><%= form.text_field :name_sei_kana , size:10%> <%= form.label :name_mei_kana %><%= form.text_field :name_mei_kana , size: 10%> |
| <%= form.label :organization %> | <%= form.text_field :organization %> |
| <%= form.label :department %> | <%= form.text_field :department %> |
| <%= form.label :group %> | <%= form.text_field :group %> |
| <%= form.label :regard_fields %> | <%= form.text_field :regard_fields %> |
| <%= t('views.accounts.edit.institute_address')%> | <%= form.label :country %><%= form.text_field :country %> | <%= form.label :postalcode %><%= form.text_field :postalcode %> |
| <%= form.label :state %><%= form.text_field :state %> | |
| <%= form.label :city %><%= form.text_field :city %> | |
| <%= form.label :address %><%= form.text_field :address %> | |
| <%= t('views.accounts.edit.in_english')%> | |
| Name | <%= form.label :name_first %><%= form.text_field :name_first ,size: 20%> |
| <%= form.label :name_family %><%= form.text_field :name_family ,size: 20 %> | |
| <%= form.label :name_other %><%= form.text_field :name_other ,size: 20 %> | |
| <%= form.label :organization_en %> | <%= form.text_field :organization_en %> |
| <%= form.label :department_en %> | <%= form.text_field :department_en %> |
| <%= form.label :group_en %> | <%= form.text_field :group_en %> |
| <%= form.label :regard_fields_en %> | <%= form.text_field :regard_fields_en %> |
| Institute Address | <%= form.label :address_en %><%= form.text_field :address_en %> |
| <%= form.label :city_en %><%= form.text_field :city_en %> | |
| <%= form.label :state_en %><%= form.text_field :state_en %> | |
| <%= form.label :postalcode_en %><%= form.text_field :postalcode_en %> | |
| <%= form.label :country_en %><%= form.text_field :country_en %> | |