Sha256: 13859d3ab8e4a2bfe75ca8079cbaf5425c08a8b125037c0c0d2db8e1b7eccaaa
Contents?: true
Size: 1.21 KB
Versions: 51
Compression:
Stored size: 1.21 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] %> <%= link_to t("actions.destroy", scope: "decidim.system"), organization, method: :delete, class: "small alert button", data: { confirm: t("actions.confirm_destroy", scope: "decidim.system") } %> </td> </tr> <% end %> </tbody> </table>
Version data entries
51 entries across 51 versions & 2 rubygems