summaryrefslogtreecommitdiff
path: root/templates/replies/index.jinja
blob: df0705acac46679506b995b3525a2835f74c34c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<div id="comment-section" class="comment-section">
    {% for reply in page.items %}
	<div id="reply-{{reply.id}}" class="comment">
	    <section class="comment-meta">
		<div class="author">
		    {% if reply.author is eq('') %}
			Anonymous said:
		    {% else %}
			{{ reply.author }} said:
		    {% endif %}
		</div>
		<div class="date">
		    {{ reply.created_at.date().isoformat() }}
		</div>
	    </section>
	    <textarea rows="4" cols="40" disabled="true">
		{{ reply.content }}
	    </textarea>
	</div>
    {% endfor %}
</div>