bib_recognition/bibrecognition/imguploader/templates/changeid.html

30 lines
603 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Search Photos</title>
</head>
<body>
{% if foto %}
<img src="{{ foto }}" />
<p>Znalezione wartości:</p>
<span>
{% for n in numery %}
{{ n }},
{% endfor %}
<p>Nowe wartości (po przecinku): </p>
<form action="/change/{{ photoid }}" method="post">
{% csrf_token %}
{{ form }}
<input type="submit" value="Submit">
</form>
</span>
{% endif %}
</body>
</html>