AyuntamientoMadrid/participacion

View on GitHub
app/components/admin/site_customization/images/index_component.html.erb

Summary

Maintainability
Test Coverage
<% provide :main_class, "admin-site-customization-images-index" %>
<%= header %>

<table>
  <thead>
    <tr>
      <th><%= t("admin.site_customization.images.index.image") %></th>
      <th><%= t("admin.actions.actions") %></th>
    </tr>
  </thead>
  <tbody>
    <% images.each do |image| %>
      <tr id="image_<%= image.name %>">
        <td>
          <strong><%= image.name %></strong> (<%= image.required_width %>x<%= image.required_height %>)
        </td>
        <td>
          <%= render Admin::SiteCustomization::Images::TableActionsComponent.new(image) %>
        </td>
      </tr>
    <% end %>
  </tbody>
</table>