blob: e11560ee461b61d2736895d788af0b6e22508b13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{% extends "index_page.html" %}
{% block title %}{{title}}{% endblock %}
{% block content %}
<div class="container">
<h3>{{title}}</h3>
<div style="text-align: right;">
{% if editable == "true" %}
<a href="docedit?entry={{entry}}&edit=true">
<img style="width: 16px;" src="/static/new/images/edit.gif">
</a>
{% endif %}
</div>
{{content|safe}}
</div>
{% endblock %}
|