{% extends 'base.html' %} {% block content %}
{% load static %}

Your Uploaded Books

{% if uploaded_books.all %} {% for book in uploaded_books.all %}

{{ book.title }}

Uploaded on: {{ book.uploaded_at }}

{% csrf_token %}
{% endfor %} {% else %}

You have no uploaded books.

{% endif %}
Upload a Book
{% endblock %}