Sha256: 5b051e1bdc95b4de14af9625f4de9c67f74339894ef1511e56f7d1f282d76a64

Contents?: true

Size: 1.59 KB

Versions: 3

Compression:

Stored size: 1.59 KB

Contents

<% add_decidim_page_title(t(".title", polling_station_title: translated_attribute(closure.polling_station.title), election_title: translated_attribute(closure.election.title))) %>
<%= link_to voting_monitoring_committee_polling_station_closures_path(current_voting, election_id: closure.election.id) do %>
  <%= icon "arrow-left-s-fill", class: "icon--small", role: "img" %> <%= t(".change_polling_station") %>
<% end %>

<div class="card" id="monitoring_committee_polling_station_closures">
  <div class="item_show__header">
    <h2 class="item_show__header-title">
      <%= t(".title", polling_station_title: translated_attribute(closure.polling_station.title), election_title: translated_attribute(closure.election.title)).html_safe %>
    </h2>
  </div>

  <%= render partial: "closure_certificate_results" %>

  <div class="card-section">
    <%= decidim_form_for @form, url: validate_voting_monitoring_committee_polling_station_closure_path(current_voting, closure), method: :post do |form| %>
      <%= content_tag :div,
                      form.text_area(
                        :monitoring_committee_notes,
                        rows: 5,
                        label: t(".monitoring_committee_notes"),
                        placeholder: t(".monitoring_committee_notes_placeholder")
                      ) %>

      <div class="form__wrapper-block flex-col-reverse md:flex-row justify-between">
        <%= form.submit t("actions.validate", scope: "decidim.votings.admin.monitoring_committee_polling_station_closures"), class: "button button__sm button__secondary" %>
      </div>
    <% end %>
  </div>
</div>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
decidim-elections-0.28.0 app/views/decidim/votings/admin/monitoring_committee_polling_station_closures/edit.html.erb
decidim-elections-0.28.0.rc5 app/views/decidim/votings/admin/monitoring_committee_polling_station_closures/edit.html.erb
decidim-elections-0.28.0.rc4 app/views/decidim/votings/admin/monitoring_committee_polling_station_closures/edit.html.erb