mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-01-21 10:22:58 -08:00
13 lines
365 B
HTML
13 lines
365 B
HTML
<form action={{url}} method="POST" enctype="multipart/form-data">
|
|
{% for name, value in params.items %}
|
|
<input type="hidden" name="{{name}}" value="{{value}}"/>
|
|
{% endfor %}
|
|
{% block extra %} {% endblock %}
|
|
{% block file %}
|
|
<input type="file" name="file"/>
|
|
{% endblock %}
|
|
{% block submit %}
|
|
<input type="submit"/>
|
|
{% endblock %}
|
|
</form>
|