You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
700 B

<!DOCTYPE html>
<html lang="ch">
<head>
<meta charset="UTF-8">
<title>HSV</title>
</head>
<body>
<form method="POST" enctype="multipart/form-data">
{% csrf_token %}
<input type="file" name="img">
<button type="submit">上传</button>
</form>
<p1>原图</p1>
<br>
{# {% for img in imgs %}#}
{# <img src="{{ img.img.url }}" />#}
{# {% endfor %}#}
<img src="{{ img.img.url }}" alt=""/>
<br>
<p1>H</p1>
<br>
<img src="/media/HSV/h.jpg" alt="H"/>
<br>
<p1>S</p1>
<br>
<img src="/media/HSV/s.jpg" alt="S"/>
<br>
<p1>V</p1>
<br>
<img src="/media/HSV/v.jpg" alt="V"/>
</body>
</html>