{% extends 'base.html' %} {% block title %}

Article checkout


{% endblock %} {% block content %}
Title: {{ article.title }}
Tags:
    {% for tag in article.tags.all %}
  1. {{ tag.name }}
  2. {% endfor %}
Text: {{ article.text }}
Status: {{ article.status }}
By: {{ article.author }}
Created: {{ article.created_at }}
Updated: {{ article.updated_at }}

Edit Delete {% endblock %}