Files
blechreiz-website/imagestore/templates/imagestore/image-scope.html
Martin Bauer 114a2df9cf Lots of stuff
- Imagestore gallery
- remember me fixed
- youtube filter
- password change option
2013-10-03 11:27:06 +02:00

16 lines
594 B
HTML

{% load i18n %}
{% if view_user %}
{% if scope_tag %}<{{ scope_tag }} class='scope-view-user'>{% endif %}
{% trans "User" %}: {{ view_user }}
{% if scope_tag %}</{{ scope_tag }}>{% endif %}
{% endif %}
{% if album %}
{% if scope_tag %}<{{ scope_tag }} class='scope-album'>{% endif %}
{% trans "Album" %}: {{ album.name }}
{% if scope_tag %}</{{ scope_tag }}>{% endif %}
{% endif %}
{% if tag %}
{% if scope_tag %}<{{ scope_tag }} class='scope-album'>{% endif %}
{% trans "Tag" %}: {{ tag }}
{% if scope_tag %}</{{ scope_tag }}>{% endif %}
{% endif %}