Changeset View
Changeset View
Standalone View
Standalone View
films/templates/films/collection_detail.html
| Show All 15 Lines | <div class="files row grid"> | ||||
| {% for child_collection in child_collections %} | {% for child_collection in child_collections %} | ||||
| {% include "common/components/folder.html" %} | {% include "common/components/folder.html" %} | ||||
| {% endfor %} | {% endfor %} | ||||
| {% endif %} | {% endif %} | ||||
| {% if current_assets %} | {% if current_assets %} | ||||
| {% for asset in current_assets %} | {% for asset in current_assets %} | ||||
| {% if asset.is_published or request.user.is_superuser %} | {% if asset.is_published or request.user.is_superuser %} | ||||
| {% include "common/components/file.html" with asset=asset site_context="gallery" aspect_ratio=current_collection.thumbnail_aspect_ratio %} | {% include "common/components/file.html" with asset=asset site_context="gallery" %} | ||||
| {% endif %} | {% endif %} | ||||
| {% endfor %} | {% endfor %} | ||||
| {% endif %} | {% endif %} | ||||
| </div> | </div> | ||||
| </div> | </div> | ||||
| </div> | </div> | ||||
| Show All 20 Lines | |||||