Sha256: 0712e7684374f38fb15f7984636764c355b9b82bc1142db7bff1f539ac93f8f7
Contents?: true
Size: 1.12 KB
Versions: 3
Compression:
Stored size: 1.12 KB
Contents
<div class="card"> <div class="card-divider"> <h2 class="card-title"> <%= t('admin.index.stats', scope: 'decidim.direct_verifications.verification') %> <%= link_to t("admin.index.title", scope: 'decidim.direct_verifications.verification'), direct_verifications_path, class: "button tiny button--title" %> </h2> </div> <div class="card-section"> <table class="table-list"> <thead> <tr> <th><%= t("admin.new.authorization_handler", scope: 'decidim.direct_verifications.verification') %></th> <th><%= t(".registered") %></th> <th><%= t(".authorized") %></th> <th><%= t(".unconfirmed") %></th> <th><%= t(".authorized_unconfirmed") %></th> <th></th> </tr> </thead> <tbody> <% @stats.each do |a, s| %> <tr> <td> <%= a %> </td> <td><%= s[:registered] %></td> <td><%= s[:authorized] %></td> <td><%= s[:unconfirmed] %></td> <td><%= s[:authorized_unconfirmed] %></td> </tr> <% end %> </tbody> </table> </div> </div>
Version data entries
3 entries across 3 versions & 1 rubygems