{# Article page #} {% extends 'base/base.html' %} {% load staticfiles %} {% block head %} {% endblock %} {% block content %}

{{ article.title }}

{{ article.time_created }} {% if not article.visible %} Hidden {% endif %}

{{ article.content|safe }}
{% if request.user.is_staff %}
Edit
Django Admin
{% endif %} {% endblock %}