{% extends "base.html" %} {% block title %}Wyslane wiadomosci - Norda Biznes Partner{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Wyslane wiadomosci

Nowa wiadomosc
Odebrane Wyslane
{% if messages %} {% for msg in messages %}
{{ (msg.recipient.name or msg.recipient.email)[0].upper() }}
{{ msg.subject or '(brak tematu)' }}
{{ msg.content[:80] }}{% if msg.content|length > 80 %}...{% endif %}
Do: {{ msg.recipient.name or msg.recipient.email.split('@')[0] }}
{{ msg.created_at.strftime('%d.%m.%Y %H:%M') }}
{% if msg.is_read %}
Przeczytana
{% endif %}
{% endfor %} {% else %}

Brak wyslanych wiadomosci

{% endif %}
{% if total_pages > 1 %} {% endif %} {% endblock %}