{% extends "sora/layout.html" %} {% load i18n %} {% import "sora/macros.html" as macros with context %} {% block title %}{{ macros.page_title(title=_('Active Threads')) }}{% endblock %} {% block content %}
{% trans %}Following threads are currently experiencing most activity:{% endtrans %}
{% trans forum=forum(thread.forum), starter=username(thread.start_poster_id, thread.start_poster_name, thread.start_poster_slug), start=thread.start|reldate %}Thread started by {{ starter }} in {{ forum }} on {{ start }}.{% endtrans %}
{% trans %}Looks like there are no active threads.{% endtrans %}
{% endif %} {%- endblock %} {% macro forum(forum) -%} {{ forum.name }} {%- endmacro %} {% macro username(id, username, slug) -%} {%- if id -%} {{ username }} {%- else -%} {{ username }} {%- endif -%} {%- endmacro %}