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.
18 lines
613 B
18 lines
613 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>
|
|
{% else %}
|
|
<p>Изображения можно добавлять только после введения основных данных</p>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
|