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.

40 lines
1.3 KiB

  1. <!DOCTYPE html>
  2. <html lang="ja">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  6. <title>物体検出</title>
  7. <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
  8. integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
  9. </head>
  10. <body class="bg-light">
  11. <div class="container">
  12. <div class="py-5 text-center">
  13. <h1>物体検出</h1>
  14. </div>
  15. <div class="row justify-content-center">
  16. <form method="post" enctype="multipart/form-data">
  17. {% csrf_token %}
  18. <div>
  19. <label>画像ファイル</label>
  20. </div>
  21. <div>
  22. {{form.file}}
  23. </div>
  24. {% if result %}
  25. <div>
  26. <img src="{{ result }}" class="img-responsive">
  27. </div>
  28. {% endif %}
  29. <hr>
  30. {% for error in form.file.errors %}
  31. {{error}}
  32. {% endfor %}
  33. <button class="btn btn-primary btn-lg btn-block" type="submit">送信</button>
  34. </form>
  35. </div>
  36. </div>
  37. </body>
  38. </html>