fnp
/
prawokultury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
bad print left behind
[prawokultury.git]
/
migdal
/
templates
/
comments
/
migdal
/
entry
/
list.html
1
{% load gravatar %}
2
{% load markup_tags %}
3
<dl id="comments">
4
{% for comment in comment_list %}
5
<dt id="c{{ comment.id }}">
6
<img src="{% gravatar_for_email comment.email 24 %}"/>
7
{{ comment.submit_date }} - {{ comment.name }}
8
</dt>
9
<dd>
10
<p>{{ comment.comment|textile_restricted_pl }}</p>
11
</dd>
12
{% endfor %}
13
</dl>