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.
35 lines
983 B
35 lines
983 B
{% extends "templates/lilcity/index.html" %}
|
|
{% load static %}
|
|
|
|
{% block head %}
|
|
{{ block.super }}
|
|
<style>
|
|
.kit__photo {
|
|
width: 140px;
|
|
height: 140px;
|
|
}
|
|
</style>
|
|
{% endblock head %}
|
|
|
|
{% block pre_app_js %}
|
|
<script>
|
|
window.LIL_STORE.data.userGalleryImages = [{% for img in user.gallery.gallery_images.reverse %}{
|
|
id: {{ img.id }},
|
|
image_thumbnail_url: '{{ img.img.image_thumbnail.url }}',
|
|
image_id: {{ img.img.id }},
|
|
},{% endfor %}];
|
|
</script>
|
|
<script src="{% static 'userGalleryEdit.js' %}"></script>
|
|
{% endblock pre_app_js %}
|
|
|
|
{% block content %}
|
|
<div class="section section_gray">
|
|
<div class="section__center center center_sm">
|
|
<div class="title">Редактировать работы</div>
|
|
<div>
|
|
<block-images :images="$root.store.data.userGalleryImages" :access-token="$root.store.accessToken" no-title="1"/>
|
|
</div>
|
|
<a href="#" id="gallery-save" class="btn">Сохранить</a>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|