tornado/demos/appengine/templates/modules/entry.html

9 lines
413 B
HTML
Raw Normal View History

2009-09-10 07:50:51 +00:00
<div class="entry">
2013-03-03 16:54:35 +00:00
<h1><a href="/entry/{{ entry.slug }}">{{ entry.title }}</a></h1>
2009-09-10 07:50:51 +00:00
<div class="date">{{ locale.format_date(entry.published, full_format=True, shorter=True) }}</div>
2013-03-03 16:54:35 +00:00
<div class="body">{% raw entry.html %}</div>
2009-09-10 07:50:51 +00:00
{% if current_user and current_user.administrator %}
<div class="admin"><a href="/compose?key={{ str(entry.key()) }}">{{ _("Edit this post") }}</a></div>
{% end %}
</div>