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.
24 lines
925 B
24 lines
925 B
{% extends 'partials/base_test.html' %}
|
|
|
|
{% block content %}
|
|
<div class='container-fluid'>
|
|
<div class='row'>
|
|
<div id='fileUploadContainer' class='col-xs-12' style='margin-top: 15px'>
|
|
<p id='fileUploadAddBtn'>Add a file...</p>
|
|
|
|
<p class='file-upload-widget' style='display: none'>
|
|
<input type='file' class='file-upload-input' style='position: absolute; top: -1000px; left: -1000px'>
|
|
<span class='file-upload-label'></span>
|
|
|
|
<a
|
|
href='#'
|
|
onclick='return false'
|
|
class='file-upload-remove-btn'
|
|
style='padding: 10px; text-decoration: none'>
|
|
×
|
|
</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|