{% extends "cranefly/layout.html" %} {% import "cranefly/macros.html" as macros with context %} {% block title %}{{ macros.page_title(title=_('Popular Threads')) }}{% endblock %} {% block container %}
{% trans %}Thread{% endtrans %} | {% trans %}Rating{% endtrans %} | {% trans %}Activity{% endtrans %} | {% if user.is_authenticated() and list_form %}{% endif %} |
---|---|---|---|
{{ thread.name }}
{% trans user=thread_starter(thread), forum=thread_forum(thread), start=thread.start|reltimesince|low %}by {{ user }} in {{ forum }} {{ start }}{% endtrans %}
|
{{ replies(thread.replies) }} - {% trans user=thread_reply(thread), last=thread.last|reltimesince|low %}last by {{ user }} {{ last }}{% endtrans %}
|
{% trans %}Looks like there are no popular threads... yet!{% endtrans %}
{% endif %}