10 lines
201 B
HTML
10 lines
201 B
HTML
|
{% extends "base_generic.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
<form method="post" enctype="multipart/form-data">
|
||
|
{% csrf_token %}
|
||
|
{{ form.as_p }}
|
||
|
<button type="submit">Refresh</button>
|
||
|
|
||
|
</form>
|
||
|
{% endblock %}
|