c1aac7ecac
Co-authored-by: Cursor <cursoragent@cursor.com>
45 lines
1.7 KiB
HTML
45 lines
1.7 KiB
HTML
{% extends "base.html" %}
|
||
|
||
{% block title %}{{ folder.name }} — PhotoHost{% endblock %}
|
||
|
||
{% block content %}
|
||
<section class="page-header">
|
||
<div class="container">
|
||
<h1 class="page-header__title">📁 {{ folder.name }}</h1>
|
||
<p class="page-header__subtitle">
|
||
{% if folder.is_private %}Приватная папка{% else %}Публичная папка{% endif %}
|
||
{% if folder.has_password %} · защищена паролем{% endif %}
|
||
· {{ photos|length }} фото
|
||
</p>
|
||
<div class="page-header__actions">
|
||
<a href="{{ url_for('folders.list_folders') }}" class="btn btn--ghost">← Все папки</a>
|
||
{% if folder.owner_id == current_user.id %}
|
||
<a href="{{ url_for('folders.folder_settings', folder_id=folder.id) }}" class="btn btn--ghost">Настройки</a>
|
||
{% endif %}
|
||
<button type="button" class="btn btn--ghost copy-btn" data-url="{{ share_url }}">Копировать ссылку</button>
|
||
</div>
|
||
</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='В папке пока нет фото', empty_text='Загрузите первое изображение' %}
|
||
{% include "partials/photo_gallery.html" %}
|
||
{% endwith %}
|
||
</div>
|
||
</section>
|
||
{% endblock %}
|