upload_form.html 493 B

12345678910111213
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <main class="col-md-4 ms-sm-auto col-lg-10 px-md-4">
  4. <div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pt-3 pb-2 mb-3 border-bottom">
  5. <h1 class="h2">Manual scrobble</h1>
  6. <form action="{% url 'audioscrobbler-file-upload' %}" method="post">
  7. {% csrf_token %}
  8. {{ form }}
  9. <input type="submit" value="Submit">
  10. </form>
  11. </div>
  12. </main>
  13. {% endblock %}