{% extends "base.html" %} {% load i18n future mptt_tags mezzanine_tags linkdump_filters %} {% block meta_title %}{{ category|default:"" }} {% trans "Links" %}{% endblock %} {% block meta_description %}{% metablock %} {% trans "View shared links." %} {% endmetablock %}{% endblock %} {% block extra_css %} {% endblock %} {% block title %} {% if page %} {% editable page.title %}{{ page.title }}{% endeditable %} {% else %} {% trans "Links" %} {% endif %} {% endblock %} {% block breadcrumb_menu %} {{ block.super }} {% if category %}
  • {% trans "Category:" %} {{ category }}
  • {% endif %} {% endblock %} {% block main %} {% if category %} {% trans "Viewing links for the category" %} {{ category }} {% endif %} {% recursetree categories %} {% for dump in node.dumps.all %} {% endfor %} {{ children }} {% endrecursetree %}
    {% trans "Name" %} {% trans "Description" %} {% trans "Views" %}
    {{ node.level|int_to_tabs|safe }}{{ node.title }}
    {{ node.level|add:1|int_to_tabs|safe }}{{ dump.title }} {{ dump.description }} {{ dump.views }}
    {% endblock %} {% block right_panel %} {% include "linkdump/includes/dumps_panel.html" %} {% endblock %} {% block extra_js %} {% endblock %}