Sha256: e8cb2aa88f74dea698438c8717099ed0a5adf1942af9c09814bc3da7c059107b

Contents?: true

Size: 1.17 KB

Versions: 7

Compression:

Stored size: 1.17 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><%= t("actions.title", scope: "decidim.system") %></th>
    </tr>
  </thead>
  <tbody>
    <% organizations.each do |organization| %>
      <tr>
        <td>
          <%= link_to organization_name(organization), edit_organization_path(organization) %><br>
          <%= organization.host %>
        </td>
        <td>
          <%= l organization.created_at, format: :short %>
        </td>
        <td>
          <% 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

7 entries across 7 versions & 1 rubygems

Version Path
decidim-system-0.29.2 app/views/decidim/system/shared/_organizations_list.html.erb
decidim-system-0.29.1 app/views/decidim/system/shared/_organizations_list.html.erb
decidim-system-0.29.0 app/views/decidim/system/shared/_organizations_list.html.erb
decidim-system-0.29.0.rc4 app/views/decidim/system/shared/_organizations_list.html.erb
decidim-system-0.29.0.rc3 app/views/decidim/system/shared/_organizations_list.html.erb
decidim-system-0.29.0.rc2 app/views/decidim/system/shared/_organizations_list.html.erb
decidim-system-0.29.0.rc1 app/views/decidim/system/shared/_organizations_list.html.erb