Sha256: 7ae56aee1ccee3c36d946162339871581a42189d7f8c2d930e01354581a99b62

Contents?: true

Size: 1.11 KB

Versions: 24

Compression:

Stored size: 1.11 KB

Contents

<% provide :title do %>
  <h2><%= t ".title" %></h2>
<% end %>

<div class="actions title">
  <%= link_to t("actions.new", scope: "decidim.system", name: t("models.admin.name", scope: "decidim.system")), ["new", "admin"], class: "new" %>
</div>

<table class="stack">
  <thead>
    <tr>
      <th><%= t("models.admin.fields.email", scope: "decidim.system") %></th>
      <th><%= t("models.admin.fields.created_at", scope: "decidim.system") %></th>
      <th class="actions"><%= t("actions.title", scope: "decidim.system") %></th>
    </tr>
  </thead>
  <tbody>
    <% @admins.each do |admin| %>
      <tr>
        <td>
          <%= link_to admin.email, admin %><br />
        </td>
        <td>
          <%= l admin.created_at, format: :short %>
        </td>
        <td class="actions">
          <%= link_to t("actions.edit", scope: "decidim.system"), ["edit", admin] %>
          <%= link_to t("actions.destroy", scope: "decidim.system"), admin, method: :delete, class: "small alert button", data: { confirm: t("actions.confirm_destroy", scope: "decidim.system") } %>
        </td>
      </tr>
    <% end %>
  </tbody>
</table>

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
decidim-system-0.18.1 app/views/decidim/system/admins/index.html.erb
decidim-system-0.17.2 app/views/decidim/system/admins/index.html.erb
decidim-system-0.18.0 app/views/decidim/system/admins/index.html.erb
decidim-system-0.17.1 app/views/decidim/system/admins/index.html.erb
decidim-system-0.16.1 app/views/decidim/system/admins/index.html.erb
decidim-system-0.17.0 app/views/decidim/system/admins/index.html.erb
decidim-system-0.16.0 app/views/decidim/system/admins/index.html.erb
decidim-system-0.15.2 app/views/decidim/system/admins/index.html.erb
decidim-system-0.15.1 app/views/decidim/system/admins/index.html.erb
decidim-system-0.15.0 app/views/decidim/system/admins/index.html.erb
decidim-system-0.14.4 app/views/decidim/system/admins/index.html.erb
decidim-system-0.14.3 app/views/decidim/system/admins/index.html.erb
decidim-system-0.14.2 app/views/decidim/system/admins/index.html.erb
decidim-system-0.14.1 app/views/decidim/system/admins/index.html.erb
decidim-system-0.13.1 app/views/decidim/system/admins/index.html.erb
decidim-system-0.12.2 app/views/decidim/system/admins/index.html.erb
decidim-system-0.13.0 app/views/decidim/system/admins/index.html.erb
decidim-system-0.12.1 app/views/decidim/system/admins/index.html.erb
decidim-system-0.13.0.pre1 app/views/decidim/system/admins/index.html.erb
decidim-system-0.12.0 app/views/decidim/system/admins/index.html.erb