{# ALBUM ######################################################################} {% macro create_album_card(album, view="grid", unlink_parent=none, draggable=false) %} {% set id = "album_card_root" if album == "root" else "album_card_" + album.id %} {% set view = (view if view in ("list", "grid") else "grid") %} {% set viewparam = "?view=list" if view == "list" else "" %}
{% if album == "root" %} {% else %} {% endif %} {% if album.thumbnail_photo %} {% set thumbnail_src = "/thumbnail/" + album.thumbnail_photo.id + ".jpg" %} {% else %} {% set thumbnail_src = "/static/basic_thumbnails/album.png" %} {% endif %}
{% if album == "root" %} Albums {% else %} {{album.display_name}} {% endif %}
{% if album != "root" %} {% set child_count = album.sum_children(recurse=False) %} {% set photo_count = album.sum_photos(recurse=False) %} {{child_count}} {{-' | '-}} {{photo_count}} {% endif %}
{% if unlink_parent is not none %} {% endif %}
{% endmacro %} {# BOOKMARK ###################################################################} {% macro create_bookmark_card(bookmark, add_author=True, add_delete_button=False, add_url_element=False) %}

{{bookmark.display_name}}

{# The URL element is always display:none, but its presence is useful in #} {# facilitating the Editor object. If this bookmark will not be editable, #} {# there is no need for it. #} {% if add_url_element %} {{bookmark.url}} {% endif %} {# if more tools are added, this will become an `or` #} {% if add_delete_button %}
{% if add_delete_button %} {% endif %}
{% endif %} {% if add_author %} {% set author = bookmark.author %} {% if author is not none %}

Author: {{author.display_name}}

{% endif %} {% endif %}
{% endmacro %} {# PHOTO ######################################################################} {# Priority: specific extensions > specific mimetypes > general mimtypes #} {% set thumbnails = { "svg": "svg", "application/zip": "archive", "application/x-tar": "archive", "archive": "archive", "audio": "audio", "image": "image", "video": "video", "text": "txt", } %} {% macro create_photo_card(photo, view="grid") %} {% set view = (view if view in ("list", "grid") else "grid") %} {% set metadatas = [] %} {% if photo.width %} {% do metadatas.append("{w}×{h}".format(w=photo.width, h=photo.height)) %} {% endif %} {% if photo.duration %} {% do metadatas.append("{d}".format(d=photo.duration_string)) %} {% endif -%} {% set tag_names_title = [] %} {% for tag in photo.get_tags() %} {% do tag_names_title.append(tag.name) %} {% endfor -%} {% set tag_names_title = tag_names_title|comma_join %} {% set tag_names_inner = "T" if tag_names_title else "" %}
{{photo.basename}}
{{- metadatas|join_and_trail(", ")|safe -}} {{photo.bytes_string}} {% if view == "grid" %} {% if photo.thumbnail %} {% set thumbnail_src = "/thumbnail/" + photo.id + ".jpg" %} {% else %} {% set thumbnail_src = thumbnails.get(photo.extension, "") or thumbnails.get(photo.mimetype, "") or thumbnails.get(photo.simple_mimetype, "") or "other" %} {% set thumbnail_src = "/static/basic_thumbnails/" + thumbnail_src + ".png" %} {% endif -%}{# if thumbnail #} {% endif %}{# if grid #} {{tag_names_inner}} {# This button should be unhidden by any page that inserts toolbox items #}
{% endmacro %} {# TAG ########################################################################} {%- macro create_tag_card( tag, extra_classes="", innertext=None, innertext_safe=None, link='info', onclick=None, with_alt_description=False ) -%} {%- set href = { "search": "/search?tag_musts=" + (tag.name|urlencode), "search_musts": "/search?tag_musts=" + (tag.name|urlencode), "search_mays": "/search?tag_mays=" + (tag.name|urlencode), "search_forbids": "/search?tag_forbids=" + (tag.name|urlencode), "info": "/tag/" + tag.name, None: None, }.get(link, link) -%} {%- set class = ("tag_card" + " " + extra_classes).strip() -%} {%- set title = (with_alt_description and tag.description) or None -%} {%- set innertext = innertext_safe or (innertext or tag.name)|e -%} {%- set element = "a" if (link or onclick) else "span" -%} <{{element}} {{make_attributes(class=class, title=title, href=href, onclick=onclick, **kwargs)|safe}}>{{innertext|safe}} {{-''-}} {%- endmacro -%}