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 696B

123456789101112131415
  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. {% if rel_path_is_directory %}
  8. <p><label for="id_filename">Filename:</label> <input type="text" name="filename" maxlength="150" required id="id_filename"></p>
  9. {% endif %}
  10. <label class="required" for="f_file">Upload</label>
  11. <input class="required" required="required" type="file" name="file" id="f_file">
  12. <input type="submit" value="{% trans "Upload" %}" class="button" />
  13. </form>
  14. {% endblock content %}