| author | Yves-Marie Haussonne <ymh.work+github@gmail.com> |
| Fri, 09 May 2014 18:35:26 +0200 | |
| changeset 656 | a84519031134 |
| parent 455 | 33c7e20efcb7 |
| permissions | -rw-r--r-- |
| 0 | 1 |
{% load com %} |
2 |
{% load i18n %} |
|
| 454 | 3 |
<div class="pagebreakhere" style="font-size: 10pt;"> |
4 |
<hr /> |
|
5 |
{% for comment in comments %} |
|
6 |
<div> |
|
| 0 | 7 |
{% if comment.is_reply %} |
8 |
({{ comment.num }}) |
|
9 |
{% else %} |
|
10 |
<b>[{{ comment.num }}]</b> |
|
11 |
{% endif %} |
|
| 454 | 12 |
</div> |
|
455
33c7e20efcb7
Added export of attachements as inline b64 images for appropriate formats.
gibus
parents:
454
diff
changeset
|
13 |
<div style="border-bottom: thin solid black; margin-bottom: 5pt; padding-bottom: 2pt; padding-left: 10pt;"> |
| 454 | 14 |
<p> |
15 |
{{ comment.title }}<br /> |
|
16 |
{% blocktrans with comment.get_name as name and comment.created|local_date:tz as date %}by {{ name }} on {{ date }}{% endblocktrans %}<br /> |
|
17 |
{{ comment.content }} |
|
18 |
</p> |
|
19 |
{% if comment.tags %} |
|
20 |
<p style="font-size: 8pt;">tags: {{ comment.tags }}</p> |
|
21 |
{% endif %} |
|
22 |
</div> |
|
| 0 | 23 |
{% endfor %} |
24 |
</div> |