Sha256: 1e2a63b0014d3228cddcb13620ab8e6afc766a1fc22864227c9c46ab71a4b621
Contents?: true
Size: 1.25 KB
Versions: 3
Compression:
Stored size: 1.25 KB
Contents
<% add_decidim_page_title(t(".title")) %> <div class="card" id="monitoring_committee_election_results"> <div class="item_show__header"> <h2 class="item_show__header-title"> <%= t(".title") %> </h2> </div> <div class="table-scroll"> <table class="table-list"> <thead> <tr> <th><%= t("title", scope: "decidim.elections.admin.elections.index") %></th> <th class="actions"><%= t("actions.title", scope: "decidim.votings.admin.monitoring_committee_election_results") %></th> </tr> </thead> <tbody> <% elections.finished.each do |election| %> <tr data-id="<%= election.id %>"> <td> <%= link_to translated_attribute(election.title), voting_monitoring_committee_election_result_path(current_voting, election) %> </td> <td class="table-list__actions"> <%= icon_link_to "eye-line", voting_monitoring_committee_election_result_path(current_voting, election), t("actions.view", scope: "decidim.votings.admin.monitoring_committee_election_results"), class: "action-icon--view", target: "_blank", data: { "external-link": false } %> </td> </tr> <% end %> </tbody> </table> </div> </div>
Version data entries
3 entries across 3 versions & 1 rubygems