{% extends 'ostatus/template.html' %} {% load i18n %} {% load utilities %} {% load markdown %} {% block title %} {% if not request.user.is_authenticated %} {% trans "Log in to " %} {% elif error %} {% trans "Error following from " %} {% else %} {% trans "Follow from " %} {% endif %} {% endblock %} {% block heading %} {% if not request.user.is_authenticated and not error == 'remote_subscribe' %} {% trans "Let's log in first..." %} {% elif error %} {% trans 'Uh oh...' %} {% else %} {% trans 'Follow from ' %}{{ site.name }} {% endif %} {% endblock %} {% block content %} {% if error or not request.user.is_authenticated %} {% include 'ostatus/error.html' with error=error user=user account=account %} {% else %}
{% if user.summary %} {{ user.summary|to_markdown|safe|truncatechars_html:120 }} {% else %} {% endif %}
{% endif %} {% endblock %}