{% extends 'textdocs/base.html' %} {% block content %} Create New Document
{% for doc in documents %}
{{ doc.title }}
By: {{ doc.author.nombre }}
Created on: {{ doc.created_at|date:"F j, Y" }}
{% empty %}

No documents found. Create your first one!

{% endfor %}
{% endblock %}