{% extends "base.html" %} {% load i18n %} {% load blogtags %} {% block main_content %} {% ifequal article.status 0 %}

Article is not visible yet!

Published by {{ article.author.get_full_name }} on {{ article.pubDate|date:"d.n.Y" }}

{% endifequal %}

{{ article.title }}

{% if article.title_image %} {% endif %}

{{ article.desc }}

{{ article.content|safe }}

{% if user.is_authenticated %} edit Article {% endif %} More Articles from {{ article.author.get_full_name }}

All articles by {{ article.author.get_full_name }}

Article published under following Tags {% next article as next %} {% if next %}

Next Article: {{next.title}}

{% endif %} {% prev article as prev %} {% if prev %}

Previous Article: {{prev.title}}

{% endif %} {% getNewest 3 as latestArticles %} Newest articles: {% for narticle in latestArticles %}
  • {{ narticle.title }}
  • {% endfor %} {% endblock %} {% if article.comments_enabled %}
    {% endif %}