{% extends 'base.html' %}
{% block title %} My Images {% endblock %}
{% block content %}
{% if user.is_authenticated %}
Hi {{ user.username }}!
{% for image in images %}
{% endfor %}
{% else %}
You are not logged in
Log In {% endif %} {% endblock %}