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.
39 lines
1.4 KiB
39 lines
1.4 KiB
{% extends "base.html" %}
|
|
|
|
{% block head %}
|
|
<link href='{{ sitepath }}static/css/dropzone.css' media='screen, projection' rel='stylesheet' type='text/css'>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div id="fileupload">
|
|
<form action="{{ sitepath }}upload" class="dropzone" id="dropzone" method="POST" enctype="multipart/form-data" data-maxsize="{{ maxsize }}">
|
|
<div class="fallback">
|
|
<input id="fileinput" name="file" type="file" /><br />
|
|
<input id="submitbtn" type="submit" value="Upload">
|
|
</div>
|
|
|
|
<div id="dzone" class="dz-default dz-message">
|
|
<span>Click or Drop file(s) or Paste image</span>
|
|
</div>
|
|
|
|
<div id="choices">
|
|
<label><input name="randomize" id="randomize" type="checkbox" checked /> Randomize filename</label>
|
|
<div id="expiry">
|
|
<label>File expiry:
|
|
<select name="expires" id="expires">
|
|
{% for expiry in expirylist %}
|
|
<option value="{{ expiry.Seconds }}"{% if forloop.Last %} selected{% endif %}>{{ expiry.Human }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<div class="clear"></div>
|
|
</form>
|
|
<div id="uploads"></div>
|
|
<div class="clear"></div>
|
|
</div>
|
|
|
|
<script src="{{ sitepath }}static/js/dropzone.js"></script>
|
|
<script src="{{ sitepath }}static/js/upload.js"></script>
|
|
{% endblock %}
|