Widziane przez {{ readers_count }} {{ 'osobę' if readers_count == 1 else 'osoby' if readers_count < 5 else 'osób' }}:
{% for read in readers[:20] %}
{{ (read.user.name or read.user.email)[0]|upper }}
{% endfor %}
{% if readers_count > 20 %}
+{{ readers_count - 20 }}
{% endif %}
{% endif %}
Pytania i odpowiedzi
{% if classified.author_id == current_user.id and unanswered_count > 0 %}
{{ unanswered_count }} nowych
{% endif %}
{% if classified.author_id != current_user.id %}
{% endif %}
{% if questions %}
{% for q in questions %}
{{ (q.author.name or q.author.email)[0]|upper }}
{{ q.author.name or q.author.email.split('@')[0] }}
{% if q.author.company %} - {{ q.author.company.name }}{% endif %}
{% if not q.answer %}Oczekuje na odpowiedz{% endif %}
{{ q.created_at|local_time('%d.%m.%Y %H:%M') }}
{% if classified.author_id == current_user.id %}
{% endif %}
{{ q.content }}
{% if q.answer %}
Odpowiedz od {{ classified.author.name or classified.author.email.split('@')[0] }}