Previously to this
- {% for p in previous %} {{ p.title }} - {{ p.created_at.strftime('%Y-%m-%d') }} {% endfor %}
Replies to this
- {% for reply in replies %} {{ reply.title }} - {{ reply.created_at.strftime('%Y-%m-%d') }} {% endfor %}
{% extends 'base.html' %} {% block content %} {% if post.parent != 0 %} Previous
{{ post.created_at.strftime('%Y-%m-%d %H:%M') }}
Authour: {{post.authour.name}}