Sha256: d7313282f627a9a1f3709122f1f74be373c6f00084812c702ce0eeab3d3de495
Contents?: true
Size: 1.47 KB
Versions: 38
Compression:
Stored size: 1.47 KB
Contents
<div class="card"> <div class="card-divider"> <h2 class="card-title"> <%= t "decidim.admin.titles.impersonations" %> </h2> </div> <div class="card-section"> <div class="table-scroll"> <table class="table-list"> <thead> <tr> <th><%= t("models.impersonation_log.fields.admin", scope: "decidim.admin") %></th> <th><%= t("models.impersonation_log.fields.user", scope: "decidim.admin") %></th> <th><%= t("models.impersonation_log.fields.started_at", scope: "decidim.admin") %></th> <th><%= t("models.impersonation_log.fields.ended_at", scope: "decidim.admin") %></th> <th><%= t("models.impersonation_log.fields.expired_at", scope: "decidim.admin") %></th> </tr> </thead> <tbody> <% @impersonation_logs.each do |impersonation_log| %> <tr> <td><%= impersonation_log.admin.name %></td> <td><%= impersonation_log.user.name %></td> <td><%= impersonation_log.started_at ? l(impersonation_log.started_at, format: :long) : nil %></td> <td><%= impersonation_log.ended_at ? l(impersonation_log.ended_at, format: :long) : nil %></td> <td><%= impersonation_log.expired_at ? l(impersonation_log.expired_at, format: :long) : nil %></td> </tr> <% end %> </tbody> </table> <%= paginate @impersonation_logs, theme: "decidim" %> </div> </div> </div>
Version data entries
38 entries across 38 versions & 2 rubygems