{% extends "pages/wiki/base.html" %} {% block title %}Wiki Pages Tagged {{ tag }}{% endblock title %} {% block content %}

Pages tagged {{ tag }}

{% if pages %} {% for page in pages %} {% endfor %}
Title URL
{{ page.title }} {{ page.url }}
{% else %}

There are no pages tagged {{ tag }}.

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