{% extends "pages/wiki/base.html" %} {% block title %}Index by Tags{% endblock title %} {% block content %}

Tags being used

{% if tags %} {% for tag, pages in tags|dictsort %} {% endfor %}
Tag Number of Articles
{{ tag }} {{ pages|length }}
{% else %}

There are no tags in use so far.

{% endif %} {% endblock content %} {% block postscripts -%} {{ super() }} $(document).ready(function() { // DataTable $("#Tags").DataTable({ dom: 'Bfrtip', buttons: [ { extend: 'collection', text: 'Export', buttons: [ 'pdf', 'csv', 'copy', 'excel' ] } ], scrollX: true, select: true }); }); {% endblock postscripts -%}