Sha256: 12c9c65d1a19180dd88208508c57f20c89ada3b90810c44f0da5d663d657100f
Contents?: true
Size: 1.54 KB
Versions: 12
Compression:
Stored size: 1.54 KB
Contents
<% add_decidim_page_title(t(".title")) %> <div class="card"> <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(".username") %></th> <th><%= t(".address") %></th> <th><%= t(".verification_code") %></th> <th><%= t(".letter_sent_at") %></th> <th></th> </tr> </thead> <tbody> <% @pending_authorizations.each do |authorization| %> <tr> <td> <%= authorization.user.name %> </td> <td> <%= authorization.verification_address %> </td> <td> <%= authorization.verification_code %> </td> <td> <%= authorization.letter_sent_at %> </td> <td> <% if authorization.letter_sent? %> <%= icon "checkbox-circle-line", class: "action-icon action-icon--disabled" %> <% else %> <%= icon_link_to "checkbox-circle-line", pending_authorization_postage_path(authorization.id), t(".mark_as_sent"), method: :post, class: "action-icon--verify" %> <% end %> </td> </tr> <% end %> </tbody> </table> </div> </div>
Version data entries
12 entries across 12 versions & 1 rubygems