Meta
{% trans 'Published' %}: {{ article.publish_date|naturalday }}
{% trans 'Author' %}: {{ article.author.get_name }}
{% trans 'Comments' %}:
{% trans 'Word Count' %}: {{ article.word_count|intcomma }}
{% if article.get_next_article %}
{% trans 'Next' %}:
{{ article.get_next_article.title }}
{% endif %}
{% if article.get_previous_article %}
{% trans 'Previous' %}:
{{ article.get_previous_article.title }}
{% endif %}
{% if article.use_addthis_button and article.addthis_username %}
{% endif %}
{% trans 'Tags' %}
{% if article.tags.count %}{% for tag in article.tags.all %}{{ tag.name }} {% endfor %}{% else %}None{% endif %}
{% for fu in article.followups.live %}
{% if forloop.first %}
{% endif %}
-
{{ fu.title }}, {% trans 'posted' %} {{ fu.publish_date|naturalday }}
{% if forloop.last %}
{% endif %}
{% endfor %}
{% for fu in article.followup_for.live %}
{% if forloop.first %}
{% endif %}
-
{{ fu.title }}, {% trans 'posted' %} {{ fu.publish_date|naturalday }}
{% if forloop.last %}
{% endif %}
{% endfor %}
{% for ra in article.related_articles.live %}
{% if forloop.first %}
{% endif %}
-
{{ ra.title }}, {% trans 'posted' %} {{ ra.publish_date|naturalday }}
{% if forloop.last %}
{% endif %}
{% endfor %}
{% for url,title in article.links %}
{% if forloop.first %}
{% trans 'Article Links' %}
{% endif %}
- {{ title|safe|truncatewords:10 }}
{% if forloop.last %}
{% endif %}
{% endfor %}