{% extends 'base.html' %} {% block title %}Dashboard{% endblock title %} {% block content %}

Dashboard

Categories

Create {% for category in categories_list %} {% endfor %}
Title Author Options
{{ category.title }} {{ category.author.username }} View | Update | Delete

Articles

Create {% for article in articles_list %} {% endfor %}
Title Author Status Category Tags Options
{{ article.title }} {{ article.author.username }} {{ article.get_status_display }} {{ article.category.title }} {% for tag in article.tags.names %} {{ tag }} {% endfor %} View | Update | Delete
{% endblock %}