fef-questionnaire/questionnaire/templates/page.html

14 lines
297 B
HTML

{% extends "base.html" %}
{% load markup %}
{% block title %}
{{ block.super }} - {{ page.title }}
{% endblock %}
{% block content %}
{{ page.body|textile }}
{% if user.is_authenticated %}
<a href="/admin/page/page/{{ page.slug }}/">(edit)</a>
{% endif %}
{% endblock %}