{% extends "plainui/base.html" %} {% import "plainui/components/markdown.html" as markdownMacro %} {% block title %}{{conf.name}} - {% if page %}{{ page.title }}{% else %}{{ _("missing page") }}{% endif %}{% endblock %} {% block content %} {%- if not page %} {%- if page_no_permission %} {{ _("This Page is private. You are currently not permitted to view this page.") }} {%- elif page_can_create %}
{{ _("This page does not exist. Do you wish to create it?") }}
{{ _("Create Page") }} {%- else %}
{{ _("This page does not exist.") }}
{%- endif %} {%- else %} {%- if revision_not_found %} {%- endif %} {{ titleMacro.title(title=page.title) }}
{{ _("Global History") }}
{%- if page_can_edit %} {{ _("Edit") }} {%- endif %} {{ _("Report") }} {{ _("History") }}
{{ markdownMacro.markdown(markdown=page_body | safe) }}
{% endif %} {% endblock %}