{% extends 'base.html' %}
{% block title %} My Images {% endblock %}
{% block content %}
{% if user.is_authenticated %}
Hi {{ user.username }}!
{% for i in get_status reversed %}
{% if i.reason %}
cross
{% elif i.tokenized %}
checkmark
{% else %}
Processing
{% endif %}
{% endfor %}
{% else %}
You are not logged in
Log In {% endif %} {% endblock %}