{% extends "base.html" %} {% block title %}{{ announcement.title }} - Aktualnoƛci - Norda Biznes Partner{% endblock %} {% block meta_description %}{{ announcement.excerpt or announcement.content|striptags|truncate(160) }}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
← Powrot do listy ogloszen {% if announcement.is_pinned %}
📌 To ogloszenie jest przypiete i wyswietla sie na gorze listy
{% endif %}
{% for cat in (announcement.categories or [announcement.category]) %} {{ category_labels.get(cat, cat) }} {% endfor %} {{ announcement.published_at|local_time('%d %B %Y') if announcement.published_at else '' }} {% if announcement.author %} 👤 {{ announcement.author.name }} {% endif %} 👁 {{ announcement.views_count or 0 }} wyswietlen

{{ announcement.title }}

{% if announcement.excerpt %}

{{ announcement.excerpt }}

{% endif %}
{% if announcement.image_url %} {{ announcement.title }} {% endif %}
{{ announcement.content|safe }} {% if announcement.external_link %} {% endif %}
👁 Przeczytane przez
{{ readers_count }} z {{ total_users }} ({{ read_percentage }}%)
{% for read in readers[:20] %}
{{ (read.user.name or read.user.email)[0]|upper }}
{% endfor %} {% if readers_count > 20 %}
+{{ readers_count - 20 }}
{% endif %}
{% endblock %} {% block extra_js %} function copyLink() { navigator.clipboard.writeText(window.location.href).then(function() { const btn = document.querySelector('.share-btn.copy'); const originalText = btn.innerHTML; btn.innerHTML = '✓'; btn.style.background = 'var(--success-bg)'; btn.style.color = 'var(--success)'; setTimeout(function() { btn.innerHTML = originalText; btn.style.background = ''; btn.style.color = ''; }, 2000); }); } {% endblock %}