Sha256: 9affd46dbc20285bc1ac878cd6cede981795623ad1915d0b32e1f727000107a4
Contents?: true
Size: 1.23 KB
Versions: 14
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> <% @pending_online_authorizations.each do |authorization| %> <tr> <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> </tr> <% end %> </tbody> </table> </div> </div>
Version data entries
14 entries across 14 versions & 1 rubygems