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.
 
 
 
 
 
 

19 lines
619 B

{% load static %}
<div class="box span8">
<div class="box-header well">
<h2><i class="icon-pencil"></i>Файлы</h2>
</div>
<div class="box-content">
{% if object %}
<div class="file_upload_container"
data-upload-url="{% url 'ajax_post_file' object.pk %}?model={{ model }}">
<input type="file" name="file_path" class="file_uploader">
</div>
{% else %}
<p>Файлы можно добавлять только после введения основных данных</p>
{% endif %}
</div>
</div>