Sha256: 2c750937adc5a9361cc59f043373ab3eaf80bb448dbc5e4d8fc8d228bb253ed2

Contents?: true

Size: 1.57 KB

Versions: 2

Compression:

Stored size: 1.57 KB

Contents

<div class="card" id="area-types">
  <div class="card-divider">
    <h2 class="card-title"><%= t "decidim.admin.titles.area_types" %> <%= link_to t("actions.add", scope: "decidim.admin"), ['new', 'area_type'], class: 'button tiny button--title new' %></h2>
  </div>
  <div class="card-section">
    <div class="table-scroll">
        <table class="table-list">
        <thead>
          <tr>
            <th><%= t("models.area_type.fields.name", scope: "decidim.admin") %></th>
            <th><%= t("models.area_type.fields.plural", scope: "decidim.admin") %></th>
            <th></th>
          </tr>
        </thead>
        <tbody>
          <% area_types.each do |area_type| %>
            <tr>
              <td>
                <%= translated_attribute(area_type.name) %>
              </td>
              <td>
                <%= translated_attribute(area_type.plural) %>
              </td>
              <td class="table-list__actions">

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

                <% if can? :destroy, area_type %>
                  <%= icon_link_to "circle-x", area_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

2 entries across 2 versions & 1 rubygems

Version Path
decidim-admin-0.10.1 app/views/decidim/admin/area_types/index.html.erb
decidim-admin-0.10.0 app/views/decidim/admin/area_types/index.html.erb