<%- if params[:mode] == 'add' -%> <%= radio_button_tag 'mode', 'show' -%> <%= label_tag 'mode_show', t('page.show') %> <%= radio_button_tag 'mode', 'add', checked: true -%> <%= label_tag 'mode_add', t('page.add') %> <%- else -%> <%= radio_button_tag 'mode', 'show', checked: true -%> <%= label_tag 'mode_show', t('page.show') %> <%= radio_button_tag 'mode', 'add' -%> <%= label_tag 'mode_add', t('page.add') %> <%- end -%>