2024-04-29 16:16:00 +00:00
|
|
|
{% extends 'default/templates/renderable/taggable.html' %}
|
|
|
|
|
2024-06-03 15:50:44 +00:00
|
|
|
{% block header %}
|
2024-05-21 03:58:28 +00:00
|
|
|
|
|
|
|
{{ super() }}
|
|
|
|
|
|
|
|
{% if not content.published %}
|
2024-08-16 15:57:08 +00:00
|
|
|
<span class="warning unpublished" title="This {{ content._lowerclass }} has NOT been published."></span>
|
2024-05-21 03:58:28 +00:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
2024-10-26 18:31:31 +00:00
|
|
|
{% block meta_header %}
|
|
|
|
|
|
|
|
<span class="created">{{ content.created|prettydate }}</span>
|
|
|
|
|
|
|
|
{{ super() }}
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
2024-06-03 15:50:44 +00:00
|
|
|
{% block footer %}
|
|
|
|
|
2024-04-29 16:16:00 +00:00
|
|
|
{{ super() }}
|
|
|
|
|
2024-07-27 01:05:56 +00:00
|
|
|
{% if mode == 'full' and content.comment_enabled %}
|
2024-05-02 18:57:38 +00:00
|
|
|
<div class="comments">
|
2024-04-29 16:16:00 +00:00
|
|
|
|
2024-09-01 16:52:27 +00:00
|
|
|
<h2>Comments</h2>
|
|
|
|
|
2024-05-02 18:57:38 +00:00
|
|
|
{{ content.comment_form().render() }}
|
2024-04-29 16:16:00 +00:00
|
|
|
|
2024-05-02 18:57:38 +00:00
|
|
|
{% for comment in content.comments %}
|
|
|
|
{{ comment.render() }}
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
</div>
|
2024-04-29 16:16:00 +00:00
|
|
|
{% endif %}
|
2024-06-03 15:50:44 +00:00
|
|
|
|
2024-04-29 16:16:00 +00:00
|
|
|
{% endblock %}
|