{% extends "cranefly/profiles/profile.html" %} {% load i18n %} {% load humanize %} {% load url from future %} {% import "_forms.html" as form_theme with context %} {% import "cranefly/macros.html" as macros with context %} {% block title %}{{ macros.page_title(_('Threads'), profile.username) }}{% endblock %} {% block tab %}

{% trans username=profile.username %}{{ username }}'s threads{% endtrans %}{% if items_total %} {%- trans count=items_total, total=items_total|intcomma, username=profile.username -%} {{ username }} started one thread {%- pluralize -%} {{ username }} started {{ total }} threads {%- endtrans -%} {% endif %}

{% if items_total %} {{ pager() }} {% endif %}
{% if items_total %}
{{ pager() }}
{% else %}

{% trans username=profile.username %}{{ username }} has no threads{% endtrans %}

{% endif %} {% endblock %} {% macro pager() -%} {%- endmacro %} {% macro thread(item) -%} {{ item.name }} {%- endmacro %} {% macro forum(forum) -%} {{ forum.name }} {%- endmacro %} {% macro username(user) -%} {{ user.username }} {%- endmacro %}