Sha256: 427cd0c1b13269fc78c299af9c0a58566e5e2fd91a975e1e6aa716beae9fb958
Contents?: true
Size: 1.63 KB
Versions: 3
Compression:
Stored size: 1.63 KB
Contents
<%= stylesheet_pack_tag "decidim_direct_verifications" %> <div class="card"> <div class="card-divider"> <h2 class="card-title"> <%= t(".title") %> <%= link_to t("admin.index.stats", scope: "decidim.direct_verifications.verification"), stats_path, class: "button tiny button--title" %> <%= link_to t(".new_import"), direct_verifications_path, class: "button tiny button--title" %> </h2> </div> <div class="card-section"> <div class="table-scroll"> <table class="table-list"> <thead> <tr> <th><%= t(".name") %></th> <th><%= t(".metadata") %></th> <th><%= t(".user_name") %></th> <th><%= t(".created_at") %></th> <th> </th> </tr> </thead> <tbody> <% @authorizations.each do |authorization| %> <tr data-authorization-id="<%= authorization.id %>"> <td><%= authorization.name %></td> <td class="metadata"> <span class="code"><%= authorization.metadata %></span> </td> <td><%= authorization.user.name %></td> <td><%= authorization.created_at %></td> <td class="table-list__actions"> <%= icon_link_to "circle-x", authorization_path(authorization), t("actions.destroy", scope: "decidim.admin"), class: "action-icon--remove", method: :delete, data: { confirm: t("actions.confirm_destroy", scope: "decidim.admin") } %> </td> </tr> <% end %> </tbody> </table> <%= paginate @authorizations, theme: "decidim" %> </div> </div> </div>
Version data entries
3 entries across 3 versions & 1 rubygems