16 rindas
696 B
HTML
16 rindas
696 B
HTML
{% extends "themes/"|add:settings.page_theme|add:"/base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
<form class="form" method="post" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
<input type="hidden" name="next" value="{{ next }}">
|
|
{% if rel_path_is_directory %}
|
|
<p><label for="id_filename">Filename:</label> <input type="text" name="filename" maxlength="150" required id="id_filename"></p>
|
|
{% endif %}
|
|
<label class="required" for="f_file">Upload</label>
|
|
<input class="required" required="required" type="file" name="file" id="f_file">
|
|
<input type="submit" value="{% trans "Upload" %}" class="button" />
|
|
</form>
|
|
{% endblock content %}
|