Sha256: 9ecee0afd5ba7f9e7b23cc68ee383ccf6194ecb82ffbca36c8863250f3a7b5a5

Contents?: true

Size: 1.49 KB

Versions: 2

Compression:

Stored size: 1.49 KB

Contents

<div class="card">
  <div class="card-divider">
    <h2 class="card-title">
      <%= t(".title") %>
      <%= link_to t(".pending_authorizations"), pending_authorizations_path, class: "button tiny button--title" %>
      <%= link_to t(".new"), new_granted_authorization_path, class: "button tiny button--title" %>
    </h2>
  </div>
  <div class="card-section">
    <table class="table-list">
      <thead>
        <tr>
          <th><%= t(".name") %></th>
          <th><%= t(".nickname") %></th>
          <th></th>
        </tr>
      </thead>
      <tbody>
        <% @granted_authorizations.each do |authorization| %>
          <tr>
            <td>
              <%= authorization.user.name %>
            </td>
            <td>
              <%= authorization.user.nickname %>
            </td>
            <td class="table-list__actions">
              <%= icon_link_to "person",
                               decidim.profile_path(authorization.user.nickname),
                               t("layouts.decidim.user_profile.account"),
                               class:"action-icon--show",
                               target: "_blank" %>
              <%= icon_link_to "circle-x",
                              granted_authorization_path(authorization.id),
                              t(".remove_access"),
                              method: :delete,
                              class: "action-icon--delete" %>
            </td>
          </tr>
        <% end %>
      </tbody>
    </table>
  </div>
</div>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
decidim-access_requests-0.16.0 app/views/decidim/access_requests/verification/admin/granted_authorizations/index.html.erb
decidim-access_requests-0.15.0 app/views/decidim/access_requests/verification/admin/granted_authorizations/index.html.erb