{% extends "base.html" %} {% block title %}Папки — PhotoHost{% endblock %} {% block content %} {% include "partials/alerts.html" %}

Создать папку

{% if quota and not quota.folders_unlimited and quota.folder_count >= quota.folder_limit %}

Достигнут лимит папок: {{ quota.folder_count }} / {{ quota.folder_limit }}

{% else %}
{% endif %} {% if quota %}

Лимит группы «{{ quota.group.name if quota.group else 'Пользователи' }}»: папки {{ quota.folder_count }}{% if not quota.folders_unlimited %} / {{ quota.folder_limit }}{% else %} / без лимита{% endif %}, фото {{ quota.photo_count }}{% if not quota.photos_unlimited %} / {{ quota.photo_limit }}{% else %} / без лимита{% endif %}

{% endif %}

Мои папки

{% if owned_folders %}
{% for folder in owned_folders %}
📁

{{ folder.name }}

{{ folder.photo_count }} фото {% if folder.is_private %} · приватная{% endif %} {% if folder.has_password %} · с паролем{% endif %}

{% endfor %}
{% else %}
📁

У вас пока нет папок

Создайте первую папку для организации фото

{% endif %} {% if shared_folders %}

Общие со мной

{% for folder in shared_folders %}
🤝

{{ folder.name }}

@{{ folder.owner.username }} · {{ folder.photo_count }} фото

{% endfor %}
{% endif %}
{% endblock %}