Sha256: decd6da4c52f30dc4764033aa03a38dbb7fa80029a9002f3c3eae01b6da79b7b
Contents?: true
Size: 1.56 KB
Versions: 2
Compression:
Stored size: 1.56 KB
Contents
<% add_decidim_page_title(t(".title")) %> <% provide :title do %> <h1 class="h1"><%= t ".title" %></h1> <% end %> <%= link_to t("actions.new_oauth_application", scope: "decidim.system"), [:new, :oauth_application], class: "button button__sm md:button__lg button__primary" %> <table> <thead> <tr> <th></th> <th><%= t("models.oauth_application.fields.name", scope: "decidim.system") %></th> <th><%= t("models.oauth_application.fields.organization_name", scope: "decidim.system") %></th> <th><%= t("models.oauth_application.fields.created_at", scope: "decidim.system") %></th> <th class="actions"><%= t("actions.title", scope: "decidim.system") %></th> </tr> </thead> <tbody> <% @oauth_applications.each do |oauth_application| %> <tr> <td> <%= image_tag oauth_application.attached_uploader(:organization_logo).url, class: "max-w-md" %> </td> <td> <%= link_to oauth_application.name, oauth_application %><br> </td> <td> <%= link_to oauth_application.organization_name, edit_organization_path(oauth_application.organization) %><br> </td> <td> <%= l oauth_application.created_at, format: :short %> </td> <td class="actions"> <%= link_to t("actions.edit", scope: "decidim.system"), [:edit, oauth_application] %> <%= link_to t("actions.destroy", scope: "decidim.system"), oauth_application, method: :delete, data: { confirm: t(".confirm_delete") } %> </td> </tr> <% end %> </tbody> </table>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
decidim-system-0.28.4 | app/views/decidim/system/oauth_applications/index.html.erb |
decidim-system-0.28.3 | app/views/decidim/system/oauth_applications/index.html.erb |