{% extends "todo/base.html" %} {% block content %}
{% csrf_token %}
{% for post in all_todo %}
{{post.author}} {{post.date_posted}}
{% if post.title != "" %} {{post.title}} {% endif %}

{{post.content}}

{% csrf_token %}
{% endfor %} {% endblock %} {% block todo_objects %} {% endblock %}