Sha256: c7e64f086b108c55388b44026b530464e657671fada15c3f5c15fd6463676a24

Contents?: true

Size: 1.1 KB

Versions: 9

Compression:

Stored size: 1.1 KB

Contents

<% add_decidim_page_title(t("authorization_workflows", scope: "decidim.admin.titles")) %>
<div class="card">
  <%= cell("decidim/verifications/revocations", @authorizations) %>
  <div class="card-divider">
    <h2 class="card-title">
      <%= t("decidim.admin.titles.authorization_workflows") %>
    </h2>
  </div>
  <div class="card-section">
    <table class="table-list table-list--lastleft">
      <thead>
        <tr>
          <th><%= t("decidim.authorization_handlers.name") %></th>
          <th><%= t("decidim.authorization_handlers.help") %></th>
        </tr>
      </thead>
      <tbody>
        <% @workflows.each do |manifest| %>
          <tr>
            <% workflow = Decidim::Verifications::Adapter.new(manifest) %>
            <td><%= link_to workflow.fullname, workflow.admin_root_path %></td>
            <td>
              <ul>
                <% t("decidim.authorization_handlers.admin.#{workflow.key}.help").each do |tip| %>
                  <li><%= tip %></li>
                <% end %>
              </ul>
            </td>
          </tr>
        <% end %>
      </tbody>
    </table>
  </div>
</div>

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
decidim-admin-0.27.9 app/views/decidim/admin/authorization_workflows/index.html.erb
decidim-admin-0.27.8 app/views/decidim/admin/authorization_workflows/index.html.erb
decidim-admin-0.27.7 app/views/decidim/admin/authorization_workflows/index.html.erb
decidim-admin-0.27.6 app/views/decidim/admin/authorization_workflows/index.html.erb
decidim-admin-0.26.10 app/views/decidim/admin/authorization_workflows/index.html.erb
decidim-admin-0.26.9 app/views/decidim/admin/authorization_workflows/index.html.erb
decidim-admin-0.27.5 app/views/decidim/admin/authorization_workflows/index.html.erb
decidim-admin-0.26.8 app/views/decidim/admin/authorization_workflows/index.html.erb
decidim-admin-0.27.4 app/views/decidim/admin/authorization_workflows/index.html.erb