{% extends 'base.html' %} {%load static%} {%block extracss%} {%endblock extracss%} {%block content%}
{% csrf_token %}
{% if not user.is_authenticated %}

Please login to see results

Login {% else %}

Results:

{%for img in img.images.all %}

Image {{forloop.counter}}

{%for detection in img.get_prediction_data%}

{{detection.name}}: {{detection.confidence}}%

{%endfor%} {%endfor%} Submit again {%endif%}
Export predictions
{%endblock content%}