repo.or.cz
/
bcms.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Template migration mostly done
[bcms.git]
/
templates
/
view.html
blob
2e16ae5ff1e3caaae10818630bf900e293836f5a
1
{% extends
"master.html"
%}
2
3
{% block title %}
4
{{ title }}
5
{% endblock title %}
6
7
{% block content %}
8
9
<h1>
{{ title }}
</h1>
10
{% if user.is_authenticated %}
11
<a
href
=
"/edit/${pagename}"
>
Edit
</a>
12
{% endif %}
13
<hr />
14
15
{{ contents|safe }}
16
17
{% endblock content %}