Add cloudinary v1.11.0

This commit is contained in:
JonnyWong16 2018-04-28 21:44:19 -07:00
commit 136260a822
27 changed files with 10855 additions and 0 deletions

View file

@ -0,0 +1,12 @@
<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>