16 lines
601 B
Plaintext
16 lines
601 B
Plaintext
<h2>
|
|
<%= t("admin.officials.edit.title") %>
|
|
<span class="official float-right"><strong><%= @user.name %></strong> (<%= @user.email %>)</span>
|
|
</h2>
|
|
|
|
<%= form_for @user, url: admin_official_path(@user) do |f| %>
|
|
<%= f.text_field :official_position %>
|
|
<%= f.select :official_level, official_level_options %>
|
|
<%= link_to t("admin.officials.edit.back"), admin_officials_path, class: "button small secondary" %>
|
|
<%= f.submit %>
|
|
|
|
<% if @user.official? %>
|
|
<%= link_to t("admin.officials.edit.destroy"), admin_official_path(@user), method: :delete, class: 'delete' %>
|
|
<% end %>
|
|
<% end %>
|