{% extends 'base.html' %} {% block content %} {% if current_user.is_authenticated %}

Welcome {{ current_user.name }}

{% if current_user.uploads %}

Your uploads

{% for item in current_user.uploads %}
{{ item.name }}

{{ item.name }}

Download
{% endfor %}
{% endif %}

Your purchases

{% if current_user.purchases %} {% for purchase in current_user.purchases %}
{{ purchase.item.name }}

{{ purchase.item.name }} by {{ purchase.item.uploader.name }}

Download
{% endfor %} {% else %}

Nothing is here! Check the Home page for images to purchase

{% endif %}
{% else %}

Log in to view your profile.

{% endif %} {% endblock %}