Sha256: c12902a526b51f76a82531f42f6504d4b5ad498f3019abce817984141b6fbaeb
Contents?: true
Size: 1.52 KB
Versions: 13
Compression:
Stored size: 1.52 KB
Contents
<div class="card"> <div class="card-divider"> <div class="card-title">Transfer User</div> </div> <div class="table-scroll"> <table class="table-list"> <thead> <tr> <th></th> <th><%= t("user_name", scope: "decidim.admin.conflicts") %></th> <th><%= t("managed_user_name", scope: "decidim.admin.conflicts") %></th> </tr> </thead> <tbody> <tr> <td><%= t("name", scope: "decidim.admin.conflicts.transfer") %></td> <td><%= @form.conflict.current_user.name %></td> <td><%= @form.conflict.managed_user.name %></td> </tr> <tr> <td><%= t("email", scope: "decidim.admin.conflicts.transfer") %></td> <td><%= @form.conflict.current_user.email %></td> <td><%= @form.conflict.managed_user.email.presence || "-" %></td> </tr> </tbody> </table> </div> </div> <%= decidim_form_for(@form, url: conflict_path, method: :put, html: { class: "form" }) do |f| %> <div class="card"> <div class="card-section"> <div class="row column"> <%= f.text_field :reason, label: t("reason", scope: "decidim.admin.conflicts.transfer") %> <%= f.text_field :email, label: t("email", scope: "decidim.admin.conflicts.transfer") %> </div> </div> </div> <div class="form__wrapper-block flex-col-reverse md:flex-row justify-between"> <%= f.submit t("title", scope: "decidim.admin.conflicts.transfer"), class: "button button__sm button__secondary" %> </div> <% end %>
Version data entries
13 entries across 13 versions & 1 rubygems