Django Library Mycreole
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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 %}