2023-12-06 18:12:31 +01:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
{%load static%}
|
|
|
|
{%block extracss%}
|
|
|
|
<link rel="stylesheet" href="{%static 'DetectionApp/css/upload.css' %}">
|
|
|
|
{%endblock extracss%}
|
|
|
|
{%block content%}
|
2023-11-20 15:53:42 +01:00
|
|
|
<form method="POST" enctype="multipart/form-data">
|
|
|
|
{% csrf_token %}
|
|
|
|
<div class="side_menu">
|
2023-12-13 02:11:29 +01:00
|
|
|
{% if not user.is_authenticated %}
|
|
|
|
<p id="description">Please login to submit image</p>
|
|
|
|
<button onclick="location.href='{% url 'login' %}'" id='submit' method="GET" type='button'>Login</button>
|
|
|
|
{% elif img_saved is None %}
|
2023-11-20 15:53:42 +01:00
|
|
|
<p id="description">Choose image for analysis</p>
|
2023-11-28 18:32:10 +01:00
|
|
|
<input type="submit" id="submit" value="Submit">
|
2023-11-20 15:53:42 +01:00
|
|
|
{% else %}
|
|
|
|
<p id="description">Photo saved</p>
|
2023-11-28 18:32:10 +01:00
|
|
|
<button onclick="location.href='{% url 'detect' %}'" id='submit' method="GET" type='button'>Submit again</button>
|
2023-11-20 15:53:42 +01:00
|
|
|
{%endif%}
|
|
|
|
</div>
|
|
|
|
<div class="upload_field">
|
|
|
|
<label for="id_image", class="upload_button">
|
|
|
|
{{form.as_p}}
|
2023-12-13 02:11:29 +01:00
|
|
|
{% if not img_url %}
|
|
|
|
<img id="image-preview" src="{% static 'DetectionApp/images/upload_img.png' %}" alt="Image Preview" style="width:640px; height:460px;"/>
|
2023-11-20 15:53:42 +01:00
|
|
|
{%else%}
|
2023-12-13 02:11:29 +01:00
|
|
|
<img src="{%get_media_prefix%}{{img_url}}" alt="upload_image" style="width:640px; height:460px;">
|
2023-11-20 15:53:42 +01:00
|
|
|
{%endif%}
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</form>
|
2023-11-27 16:52:09 +01:00
|
|
|
<script>
|
|
|
|
document.getElementById('id_image').addEventListener('change', function() {
|
|
|
|
var input = this;
|
|
|
|
|
|
|
|
if (input.files && input.files[0]) {
|
|
|
|
var reader = new FileReader();
|
|
|
|
|
|
|
|
reader.onload = function(e) {
|
|
|
|
document.getElementById('image-preview').src = e.target.result;
|
|
|
|
document.getElementById('image-preview').style.display = 'block';
|
|
|
|
}
|
|
|
|
|
|
|
|
reader.readAsDataURL(input.files[0]);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</form>
|
2023-12-06 18:12:31 +01:00
|
|
|
{%endblock content%}
|