media-list-wrapper__list.html.twig 858 B

1234567891011121314151617181920212223
  1. <div id="admin-media" class="files js__files card-row grid fixed-blocks pure-g">
  2. {% if not is_modal %}
  3. {% include 'partials/media-list-wrapper__list__dropzone.html.twig' ignore missing %}
  4. {% endif %}
  5. {% if admin.files is empty %}
  6. <div class="empty-state">
  7. {% if (uri.param('type') or uri.param('date')) %}
  8. <h2>Filtering by {{ uri.param('type') }} {{ uri.param('date') }}</h2>
  9. {% endif %}
  10. <h2>No media files found</h2>
  11. <p>You need to add media to a page in order to display it here.</p>
  12. </div>
  13. {% else %}
  14. {% include 'media-list-content.html.twig' with { is_modal: is_modal } %} {# not a partial as used by AJAX #}
  15. {% endif %}
  16. {{ nonce_field('admin-form', 'admin-nonce')|raw }}
  17. </div>
  18. {% include 'partials/spinning-wheel.html.twig' %}