Sha256: 693deecf42136941554370d3a9445690f1d0d9ff8056eaf773d1bae40a448d86
Contents?: true
Size: 1.01 KB
Versions: 17
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
17 entries across 17 versions & 1 rubygems