6 | {% block entry-title %}
7 |
8 | {{ object.title|widont }}
9 |
10 | {% endblock entry-title %}
11 | {% block entry-info %}
12 |
13 |
14 | {% block entry-authors %}
15 | {% with authors=object.authors.all %}
16 | {% if authors|length %}
17 | {% trans "Written by" %}
18 | {% for author in authors %}
19 | {% if not forloop.last %}, {% endif %}
22 | {% endfor %}
23 | {% trans "on" context "on date" %}
24 | {% else %}
25 | {% trans "Written on" %}
26 | {% endif %}
27 | {% endwith %}
28 | {% endblock entry-authors %}
29 | {% block entry-published %}
30 |
31 | {% endblock entry-published %}
32 | {% block entry-categories %}
33 | {% with categories=object.categories.all %}
34 | {% if categories|length %}
35 | {% trans "in" %}
36 | {% for category in categories %}
37 | {{ category }}{% if not forloop.last %}, {% endif %}{% endfor %}{% endif %}.
40 | {% endwith %}
41 | {% endblock entry-categories %}
42 |
43 | {% endblock entry-info %}
44 |
45 | {% block entry-last-update %}
46 |
49 | {% endblock entry-last-update %}
50 |
59 | {% if continue_reading %}
60 |
61 | {% endif %}
62 |
63 | {% if continue_reading %}
64 |
65 | {% endif %}
66 |
78 | 81 | {% trans "Continue reading" %} 82 | 83 |
84 | {% endif %} 85 | {% endblock continue-reading %} 86 |
164 | {% block comment-image %} 165 |
167 | {% endblock comment-image %}
168 | {% if comment.url %}
169 | {{ comment.name }}
171 | {% else %}
172 | {{ comment.name }}
173 | {% endif %}
174 | {% trans "on" context "on date" %}
175 |
176 | {{ comment.submit_date|date:"SHORT_DATETIME_FORMAT" }}
177 |
178 | #
181 |
182 | {% endblock comment-info %} 183 | {% block comment-content %} 184 | {{ comment.comment|linebreaks }} 185 | {% endblock comment-content %} 186 |