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
Fixed servefiles urls
[bcms.git]
/
templates
/
view.html
blob
8b73370f6216a6936687225c3d33747b7e0a5865
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
=
"/{{ lang }}/{{ pagename }}/edit"
>
Edit
</a>
12
{% endif %}
13
<hr />
14
15
{{ contents|safe }}
16
17
{% endblock content %}