blob: 1e5a7aef03d4489ff2ccfc946aaa97495b9b698b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{% extends "base.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 %}
|