{% extends "textbin/base.html" %} {% load i18n %} {% load staticfiles %} {% get_current_language as LANGUAGE_CODE %} {% if text.text %} {% block title %}{{ text.text|urlize|truncatechars:20 }} |{% endblock %} {% endif %} {% 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 %}