forked from fixin.me/fixin.me
20 lines
676 B
Plaintext
20 lines
676 B
Plaintext
<% content_for :navigation, flush: true do %>
|
|
<div class="left">
|
|
<%= image_link_to t(:back), "arrow-left-bold-outline", users_path %>
|
|
</div>
|
|
<% end %>
|
|
|
|
<%= labelled_form_for @user do |f| %>
|
|
<%= f.email_field :email, readonly: true %>
|
|
<% if f.object.pending_reconfirmation? %>
|
|
<%= f.email_field :unconfirmed_email, readonly: true,
|
|
hint: t("users.registrations.edit.unconfirmed_email_hint",
|
|
timestamp: f.object.confirmation_sent_at.to_fs(:db_without_sec)) %>
|
|
<% end %>
|
|
|
|
<%= f.select :status, User.statuses, readonly: true %>
|
|
|
|
<%= f.text_field :created_at, readonly: true %>
|
|
<%= f.text_field :confirmed_at, readonly: true %>
|
|
<% end %>
|