c1aac7ecac
Co-authored-by: Cursor <cursoragent@cursor.com>
39 lines
1.2 KiB
HTML
39 lines
1.2 KiB
HTML
{% extends "base.html" %}
|
||
|
||
{% block title %}{{ folder.name }} — Shared folder{% endblock %}
|
||
|
||
{% block content %}
|
||
<section class="page-header">
|
||
<div class="container">
|
||
<h1 class="page-header__title">📁 {{ folder.name }}</h1>
|
||
<p class="page-header__subtitle">Общая папка · {{ photos|length }} фото</p>
|
||
{% if share_url %}
|
||
<div class="page-header__actions">
|
||
<button type="button" class="btn btn--ghost copy-btn" data-url="{{ share_url }}">Копировать ссылку</button>
|
||
</div>
|
||
{% endif %}
|
||
</div>
|
||
</section>
|
||
|
||
{% include "partials/alerts.html" %}
|
||
|
||
{% if can_edit %}
|
||
<section id="upload" class="upload-section">
|
||
<div class="container">
|
||
<h2 class="section-title">Загрузить в папку</h2>
|
||
{% with folder_id=folder.id, max_bulk_upload=max_bulk_upload %}
|
||
{% include "partials/upload_form.html" %}
|
||
{% endwith %}
|
||
</div>
|
||
</section>
|
||
{% endif %}
|
||
|
||
<section class="gallery-section">
|
||
<div class="container">
|
||
{% with photos=photos, empty_title='В папке пока нет фото' %}
|
||
{% include "partials/photo_gallery.html" %}
|
||
{% endwith %}
|
||
</div>
|
||
</section>
|
||
{% endblock %}
|