{% extends 'base/base.html' %} {% load static %} {% block title %} Documents {% endblock %} {% block body %} {% include 'base/nav-bar.html' %}

Documents

{% for object in object_list %}

{{ object.title }}

{{ object.description }}

Update Delete

{{ object.user.first_name }} {{ object.user.last_name }}

{% endfor %}
{% if request.user.is_authenticated %} {% endif %}
{% include 'base/footer.html' %} {% endblock %}