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.
22 lines
459 B
22 lines
459 B
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<title>Upload Image</title> |
|
</head> |
|
<body> |
|
<form enctype="multipart/form-data" action="" method="POST"> |
|
{% csrf_token %} |
|
{{ form_obj.as_p }} |
|
<br> |
|
<input type="submit" value="上传图片"> |
|
{{ user_img }} |
|
{% if user_img is not None %} |
|
<div> |
|
<img src="/media/{{ user_img.heading }}" alt=""> |
|
</div> |
|
{% endif %} |
|
|
|
</form> |
|
</body> |
|
</html> |