<% if authorization.rejected? %>

<%= t(".rejection_notice") %>

  • <%= t(".rejection_correctness") %>
  • <%= t(".rejection_clarity") %>
<% else %>

<%= t(".being_reviewed") %>

<% end %>
<% if authorization.rejected? %>
<%= decidim_form_for(@form, url: authorization_path, method: :put) do |form| %>
<%= form.select :document_type, @form.document_types_for_select, prompt: true %>
<%= form.text_field :document_number %>
<%= form.upload :verification_attachment, optional: false %>
<%= form.submit t(".send"), class: "button expanded", "data-disable-with" => "#{t('.send')}..." %>
<% end %>
<% end %>