Django Library Mycreole
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

upload.html 507B

123456789101112
  1. {% extends "themes/"|add:settings.page_theme|add:"/base.html" %}
  2. {% load i18n %}
  3. {% block content %}
  4. <form class="form" method="post" enctype="multipart/form-data">
  5. {% csrf_token %}
  6. <input type="hidden" name="next" value="{{ next }}">
  7. <label class="required" for="f_file">Upload</label>
  8. <input class="required" required="required" type="file" name="file" id="f_file">
  9. <input type="submit" value="{% trans "Upload" %}" class="button" />
  10. </form>
  11. {% endblock content %}