{% extends 'dashboard/base_dashboard.html' %} {% load static %} {% load crispy_forms_tags %} {% block script_css %} {% endblock script_css %} {% block main_container %}
{{ page_title }}
{% if form.errors %}

Please correct the following errors:

    {% for field in form %} {% for error in field.errors %}
  • {{ field.label }}: {{ error }}
  • {% endfor %} {% endfor %}
{% endif %} {% for article in articles %} {% empty %} {% endfor %}
Title Author Category Tags Status Date Created Actions
{{ article.title }} {{ article.author.get_full_name }} {{ article.category.name }} {% for tag in article.tags.all %} {{ tag.name }} {% endfor %} {% if article.status == 'published' %} Published {% elif article.status == 'draft' %} Draft {% else %} Pending Review {% endif %} {{ article.created_at }} Edit Delete View
No articles found.
{% endblock main_container %} {% block script_js %} {% endblock script_js %}