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
975 B
24 lines
975 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="{{ object.upload_photo_url }}">
|
|
|
|
<input type="file" name="image" class="file_uploader">
|
|
</div>
|
|
|
|
<link rel="stylesheet" href="{% static 'jQuery-filer/css/jquery.filer.css' %}">
|
|
<link rel="stylesheet" href="{% static 'jQuery-filer/css/jquery.filer-dragdropbox-theme.css' %}">
|
|
|
|
<script src="{% static 'jQuery-filer/js/jquery.filer.js' %}"></script>
|
|
<script src="{% static 'jQuery-filer/js/init.js' %}"></script>
|
|
{% else %}
|
|
<p>Изображения можно добавлять только после введения основных данных</p>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
|