Sha256: 070f03852e105c52e4d2480b0170f2c70f2bb156084c6c760ef94aaf4ed2b3b4

Contents?: true

Size: 1.01 KB

Versions: 16

Compression:

Stored size: 1.01 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.organization.name", scope: "decidim.system")), ['new', 'organization'], class: 'new' %>
</div>

<table class="stack">
  <thead>
    <tr>
      <th><%= t("models.organization.fields.name", scope: "decidim.system") %></th>
      <th><%= t("models.organization.fields.created_at", scope: "decidim.system") %></th>
      <th class="actions"><%= t("actions.title", scope: "decidim.system") %></th>
    </tr>
  </thead>
  <tbody>
    <% @organizations.each do |organization| %>
      <tr>
        <td>
          <%= link_to organization.name, organization %><br />
          <%= organization.host %>
        </td>
        <td>
          <%= l organization.created_at, format: :short %>
        </td>
        <td class="actions">
          <%= link_to t("actions.edit", scope: "decidim.system"), ['edit', organization] %>
        </td>
      </tr>
    <% end %>
  </tbody>
</table>

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
decidim-system-0.10.1 app/views/decidim/system/organizations/index.html.erb
decidim-system-0.10.0 app/views/decidim/system/organizations/index.html.erb
decidim-system-0.9.3 app/views/decidim/system/organizations/index.html.erb
decidim-system-0.9.2 app/views/decidim/system/organizations/index.html.erb
decidim-system-0.9.1 app/views/decidim/system/organizations/index.html.erb
decidim-system-0.9.0 app/views/decidim/system/organizations/index.html.erb
decidim-system-0.8.4 app/views/decidim/system/organizations/index.html.erb
decidim-system-0.8.3 app/views/decidim/system/organizations/index.html.erb
decidim-system-0.8.2 app/views/decidim/system/organizations/index.html.erb
decidim-system-0.8.1 app/views/decidim/system/organizations/index.html.erb
decidim-system-0.8.0 app/views/decidim/system/organizations/index.html.erb
decidim-system-0.7.4 app/views/decidim/system/organizations/index.html.erb
decidim-system-0.7.3 app/views/decidim/system/organizations/index.html.erb
decidim-system-0.7.2 app/views/decidim/system/organizations/index.html.erb
decidim-system-0.7.1 app/views/decidim/system/organizations/index.html.erb
decidim-system-0.7.0 app/views/decidim/system/organizations/index.html.erb