{% extends config.get('WIKI_BASE_TEMPLATE') %} {% set active_page = "page" %} {% block content %} {{ super() }}

{{page.title}}

{% if can_edit_wiki %}
{{ _('Edit') }}
{% endif %}
{% if page.tags %}
    {% for tag in page.tags.split(',') %}
  • {{ tag }}
  • {% endfor %}
{% endif %}
{{ _('Last updated:')}} {{ page.modification_datetime | date_format }}
{{ page }}
{% endblock %}