{% extends "cranefly/layout.html" %} {% load i18n %} {% load url from future %} {% import "cranefly/macros.html" as macros with context %} {% block title %}{{ macros.page_title(title=category.name) }}{% endblock %} {% block breadcrumb %}{{ super() }} {% for parent in parents %}
  • {{ parent.name }}
  • {% endfor %}
  • {{ category.name }} {%- endblock %} {% block container %}
    {% if category.description %}
    {{ category.description_preparsed|markdown_final|safe }}
    {% endif %} {% if category.subforums %}
    {% for forum in category.subforums %} {% endfor %}
    {{ forum.name }} {% if forum.show_details %}
    {% if forum.type == 'redirect' %} {{ forum.redirects|intcomma }} {% trans %}Clicks{% endtrans %} {% else %} {{ forum.posts|intcomma }} {% trans %}Posts{% endtrans %} {% endif %}
    {% endif %} {% if forum.description %}

    {{ forum.description }}

    {% endif %}
    {% else %}

    {% trans %}Looks like there are no forums to display in this category.{% endtrans %}

    {% endif %}
    {% endblock %} {% block content %} {% if category.subforums %}
    {{ macros.draw_forums(category, 12) }}
    {% else %}

    {% trans %}Looks like there are no forums to display in this category.{% endtrans %}

    {% endif %} {% endblock %}