Sha256: 6375554fc54de67db3e5d090669617999d71d42afd7fef1f4e69da35d132e875

Contents?: true

Size: 1.68 KB

Versions: 40

Compression:

Stored size: 1.68 KB

Contents

<div class="card">
  <div class="card-divider">
    <% if allowed_to? :creste, :scope_type %>
      <h2 class="card-title"><%= t "decidim.admin.titles.scope_types" %> <%= link_to t("actions.add", scope: "decidim.admin"), ["new", "scope_type"], class: "button tiny button--title" %></h2>
    <% end %>
  </div>
  <div class="card-section">
    <div class="table-scroll">
        <table class="table-list">
        <thead>
          <tr>
            <th><%= t("models.scope_type.fields.name", scope: "decidim.admin") %></th>
            <th><%= t("models.scope_type.fields.plural", scope: "decidim.admin") %></th>
            <th></th>
          </tr>
        </thead>
        <tbody>
          <% scope_types.each do |scope_type| %>
            <tr>
              <td>
                <%= translated_attribute(scope_type.name) %>
              </td>
              <td>
                <%= translated_attribute(scope_type.plural) %>
              </td>
              <td class="table-list__actions">

                <% if allowed_to? :update, :scope_type, scope_type: scope_type %>
                  <%= icon_link_to "pencil", ["edit", scope_type], t("actions.edit", scope: "decidim.admin"), class: "action-icon--edit", method: :get, data: {} %>
                <% end %>

                <% if allowed_to? :destroy, :scope_type, scope_type: scope_type %>
                  <%= icon_link_to "circle-x", scope_type, t("actions.destroy", scope: "decidim.admin"), class: "action-icon--remove", method: :delete, data: { confirm: t("actions.confirm_destroy", scope: "decidim.admin") } %>
                <% end %>
              </td>
            </tr>
          <% end %>
        </tbody>
      </table>
    </div>
  </div>
</div>

Version data entries

40 entries across 40 versions & 1 rubygems

Version Path
decidim-admin-0.23.6 app/views/decidim/admin/scope_types/index.html.erb
decidim-admin-0.24.2 app/views/decidim/admin/scope_types/index.html.erb
decidim-admin-0.23.5 app/views/decidim/admin/scope_types/index.html.erb
decidim-admin-0.24.1 app/views/decidim/admin/scope_types/index.html.erb
decidim-admin-0.24.0 app/views/decidim/admin/scope_types/index.html.erb
decidim-admin-0.24.0.rc2 app/views/decidim/admin/scope_types/index.html.erb
decidim-admin-0.23.4 app/views/decidim/admin/scope_types/index.html.erb
decidim-admin-0.24.0.rc1 app/views/decidim/admin/scope_types/index.html.erb
decidim-admin-0.23.3 app/views/decidim/admin/scope_types/index.html.erb
decidim-admin-0.23.2 app/views/decidim/admin/scope_types/index.html.erb
decidim-admin-0.23.1 app/views/decidim/admin/scope_types/index.html.erb
decidim-admin-0.23.1.rc1 app/views/decidim/admin/scope_types/index.html.erb
decidim-admin-0.23.0 app/views/decidim/admin/scope_types/index.html.erb
decidim-admin-0.22.0 app/views/decidim/admin/scope_types/index.html.erb
decidim-admin-0.21.0 app/views/decidim/admin/scope_types/index.html.erb
decidim-admin-0.20.1 app/views/decidim/admin/scope_types/index.html.erb
decidim-admin-0.20.0 app/views/decidim/admin/scope_types/index.html.erb
decidim-admin-0.19.1 app/views/decidim/admin/scope_types/index.html.erb
decidim-admin-0.18.1 app/views/decidim/admin/scope_types/index.html.erb
decidim-admin-0.19.0 app/views/decidim/admin/scope_types/index.html.erb