{{ entry.title }}
{{ entry.content_more|urlize|linebreaks }} {% if entry.get_tags %}{% trans "Categories" %}: {% for tag in entry.get_tags %} {{ tag.name }} {% endfor %}
{% trans "Related entries" %}:
-
{% for entry in entry.get_related %}
- {{ entry.title|truncatewords:5 }} {% endfor %}
{% trans "Resources" %}:
-
{% for r in entry.resources.all %}
-
{% if r.url %}{{ r.title }}{% endif %}
{% if r.description %}{{ r.description|linebreaks }}{% endif %}
This is a resource of type
{{ r.type.slug }}
. Normally you would filter these resource types and, for instance, display onlylink
types here.
{% endfor %}
{% trans "Comments for this entry" %}
{% for comment in comment_list %}{% blocktrans with comment.user as user and comment.submit_date|date:_("DATE_FORMAT") as date %}{{ user }} at {{ date }}:{% endblocktrans %}
{% trans "Add a comment" %}
{% render_comment_form for entry %}