1
0
mirror of https://github.com/Tautulli/Tautulli.git synced 2025-03-12 04:35:40 -07:00
plexpy/lib/cloudinary/templates/cloudinary_direct_upload.html
2018-04-28 21:44:19 -07:00

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>