app/views/decidim/system/oauth_applications/index.html.erb in decidim-system-0.28.4 vs app/views/decidim/system/oauth_applications/index.html.erb in decidim-system-0.29.0.rc1
- old
+ new
@@ -11,28 +11,28 @@
<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>
+ <th><%= 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" %>
+ <%= image_tag oauth_application.attached_uploader(:organization_logo).path, 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">
+ <td>
<%= 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 %>