Sha256: 02e2e77ae79f60ad7e89e45c9960a01f655094c4c58fd95a26032170165b8a44

Contents?: true

Size: 1.19 KB

Versions: 8

Compression:

Stored size: 1.19 KB

Contents

<table>
  <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, edit_organization_path(organization) %><br>
          <%= organization.host %>
        </td>
        <td>
          <%= l organization.created_at, format: :short %>
        </td>
        <td class="actions">
          <% if organization.users.first&.invitation_pending? %>
            <%= link_to t(".resend_invitation"),
                        resend_invitation_organization_path(organization),
                        method: :post,
                        class: "button button__sm button__transparent-secondary no-underline",
                        data: { confirm: t(".confirm_resend_invitation") } %>
          <% end %>
          <%= link_to t("actions.edit", scope: "decidim.system"), edit_organization_path(organization) %>
        </td>
      </tr>
    <% end %>
  </tbody>
</table>

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
decidim-system-0.28.5 app/views/decidim/system/shared/_organizations_list.html.erb
decidim-system-0.28.4 app/views/decidim/system/shared/_organizations_list.html.erb
decidim-system-0.28.3 app/views/decidim/system/shared/_organizations_list.html.erb
decidim-system-0.28.2 app/views/decidim/system/shared/_organizations_list.html.erb
decidim-system-0.28.1 app/views/decidim/system/shared/_organizations_list.html.erb
decidim-system-0.28.0 app/views/decidim/system/shared/_organizations_list.html.erb
decidim-system-0.28.0.rc5 app/views/decidim/system/shared/_organizations_list.html.erb
decidim-system-0.28.0.rc4 app/views/decidim/system/shared/_organizations_list.html.erb