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

Page Index

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

There are no pages yet.

{% endif %} {% endblock content %} {% block sidebar %}

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