{% extends 'dashboard/base.html' %} {% block title %}Blog{% endblock %} {% block content %}

Blog

Write and publish updates for your website.

+ Create Post
{% for post in posts %} {% empty %} {% endfor %}
TitleCategoryStatus
{{ post.title }} {{ post.category|default:"—" }} {% if post.status == 'published' %}Published {% else %}Draft{% endif %} Edit
{% csrf_token %}
{% csrf_token %}
No blog posts yet.
{% endblock %}