{# # GNU MediaGoblin -- federated, autonomous media hosting # Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . #} {% from "mediagoblin/utils/pagination.html" import render_pagination %} {% macro media_grid(request, collection_items, col_number=5) %} {% for row in gridify_cursor(collection_items, col_number) %} {% for item in row %} {% set media_entry = item.get_media_entry %} {% set entry_url = media_entry.url_for_self(request.urlgen) %} {% endfor %} {% endfor %} {%- endmacro %} {# Render a media gallery with pagination. Args: - request: Request - collection_items: cursor of collection items - pagination: Paginator object - pagination_base_url: If you want the pagination to point to a different URL, point it here - col_number: How many columns per row (default 5) #} {% macro collection_gallery(request, collection_items, pagination, pagination_base_url=None, col_number=5) %} {% if collection_items and collection_items.count() %} {{ media_grid(request, collection_items, col_number=col_number) }}
{% if pagination_base_url %} {# different url, so set that and don't keep the get params #} {{ render_pagination(request, pagination, pagination_base_url, False) }} {% else %} {{ render_pagination(request, pagination) }} {% endif %} {% else %}

{%- trans -%} There doesn't seem to be any media here yet... {%- endtrans -%}

{% endif %} {% endmacro %}