{% extends "textbin/base.html" %} {% load i18n %} {% load staticfiles %} {% get_current_language as LANGUAGE_CODE %} {% block extrahead %} {# lightbox gallery #} {% endblock %} {% block title %} {% if text.text.strip %} {{ text.text|urlize|truncatechars:20 }} | {% endif %} {% endblock %} {% block body %}

{% trans "Posted by" %} {% if text.author_url %} {{ text.author_name }} {% else %} {{ text.author_name }} {% endif %} {% trans "at" %} {{ text.posted_at }}

{% if text.text.strip %}
{{ text.text|linebreaks|urlize }}
{% endif %}
{% for media in text.images %} {% if forloop.counter|divisibleby:6 %}
{% elif forloop.counter|divisibleby:4 %}
{% elif forloop.counter|divisibleby:3 %}
{% elif forloop.counter|divisibleby:2 %}
{% endif %} {% endfor %}
{% for media in text.videos %} {% if media.type == video %} {% elif media.type == youtube %} {% endif %} {% endfor %}
{% endblock %} {% block js %} {# lightbox gallery #} {% endblock %}