{% extends "layouts/base.twig" %} {% block title %}Notatki konsultantów — sklep #{{ shop_id }}{% endblock %} {% block page_heading %}

Notatki konsultantów

Sklep #{{ shop_id }}

{% endblock %} {% block content %}

Notatki (łącznie z usuniętymi)

{% if notes is empty %}

Brak notatek dla tej placówki.

{% else %}
{% for note in notes %} {% endfor %}
# Typ Konsultant Treść (fragment) Data Status
{{ note.id }} {% if note.type_name %} {{ note.type_name }} {% else %}—{% endif %} {{ note.consultant_id }} {{ note.content|slice(0,80) }}{% if note.content|length > 80 %}…{% endif %} {{ note.created_at|slice(0,16)|replace({'T': ' '}) }} {% if note.deleted_at %} usunięta {% else %} aktywna {% endif %}
{% endif %}
{% endblock %}