{% extends "layouts/mobile_base.twig" %} {% block title %}Notatka — Consultant Panel{% endblock %} {% block page_title %}Notatka{% endblock %} {% block page_subtitle %}Szczegóły i komentarze{% endblock %} {% block topbar_actions %} {# Soft delete notatki #}
{% endblock %} {% block content %}
{% if note.shop_id is defined %} Notatki {% endif %} {# ── Nagłówek notatki ── #}
{% if note.type_name %} {{ note.type_name }} {% else %} Bez kategorii {% endif %} {{ note.created_at|slice(0,16)|replace({'T': ' '}) }}

{{ note.content }}

{# ── Komentarze ── #}
Komentarze ({{ comments|length }})
{% if comments is empty %}

Brak komentarzy. Dodaj pierwszy poniżej.

{% else %}
{% for comment in comments %}
{{ comment.created_at|slice(0,16)|replace({'T': ' '}) }} {# Usuń komentarz #}

{{ comment.content }}

{# Zdjęcia do komentarza #} {% if comment.photos is defined and comment.photos|length > 0 %}
{% for photo in comment.photos %} {% if photo.presigned_url %} zdjęcie {% endif %} {% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{# ── Formularz nowego komentarza ── #}
Dodaj komentarz
{# Zdjęcia (max 4) #}
{% endblock %}