Sha256: 7eef7a31a8ed8c27127881d500ccfddc6352313ffdde1564cc8edaae6f2e982a
Contents?: true
Size: 1.25 KB
Versions: 4
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"> <h1 class="item_show__header-title"> <%= t(".title") %> </h1> </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
4 entries across 4 versions & 1 rubygems