Sha256: ea036448d0d28b922570a99b81b6bc0fee89b6f8209ad0d0c61471c1524099cd
Contents?: true
Size: 1.23 KB
Versions: 13
Compression:
Stored size: 1.23 KB
Contents
<div class="card"> <div class="card-divider"> <h2 class="card-title"> <%= t(".title") %> <%= link_to t(".config"), edit_config_path, class: "button tiny button--title" %> <%= link_to t(".offline_verification"), new_offline_confirmation_path, class: "button tiny button--title" if has_offline_method? %> </h2> </div> <div class="card-section"> <table class="table-list"> <thead> <tr> <th><%= t("activemodel.attributes.id") %></th> <th><%= t("activemodel.attributes.id_document_upload.verification_attachment") %></th> </tr> </thead> <tbody> <tr> <% @pending_online_authorizations.each do |authorization| %> <td> <%= link_to t(".verification_number", n: authorization.id), new_pending_authorization_confirmation_path(authorization.id) %> </td> <td> <%= link_to new_pending_authorization_confirmation_path(authorization.id) do %> <%= image_tag authorization.verification_attachment.url(:thumbnail), class: "thumbnail-list" %> <% end %> </td> <% end %> </tr> </tbody> </table> </div> </div>
Version data entries
13 entries across 13 versions & 1 rubygems