Migrated to django native templates
[bcms.git] / templates / view.html
blob3c5e0ae094cf1826f0c7fcc0521696a9b830d78d
1 {% extends "master.html" %}
3 {% block content %}
5 <h1 py:content="title"></h1>
6 {% if user.is_authenticated %}
7 <a href="/edit/${pagename}">Edit</a>
8 {% endif %}
9 <hr />
11 {{ contents }}
13 {% endblock content %}