feat(announcements): Reorganizacja kategorii aktualności

- Zmiana 'general'/'member_news' na 'internal'/'external'
- Kategorie: Wewnętrzne, Zewnętrzne, Wydarzenie, Okazja biznesowa, Partnerstwo
- Polskie znaki w tytułach i meta description
- "Aktualności Norda Biznes Partner"

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Maciej Pienczyn 2026-01-29 15:10:39 +01:00
parent 1eb1d26772
commit dbf55d02cb
3 changed files with 12 additions and 10 deletions

View File

@ -3094,12 +3094,12 @@ class Announcement(Base):
readers = relationship('AnnouncementRead', back_populates='announcement', cascade='all, delete-orphan')
# Constants
CATEGORIES = ['general', 'event', 'opportunity', 'member_news', 'partnership']
CATEGORIES = ['internal', 'external', 'event', 'opportunity', 'partnership']
CATEGORY_LABELS = {
'general': 'Ogólne',
'internal': 'Wewnętrzne',
'external': 'Zewnętrzne',
'event': 'Wydarzenie',
'opportunity': 'Okazja biznesowa',
'member_news': 'Od firm',
'partnership': 'Partnerstwo'
}
STATUSES = ['draft', 'published', 'archived']

View File

@ -1,6 +1,6 @@
{% extends "base.html" %}
{% block title %}{{ announcement.title }} - Aktualnosci - Norda Biznes Partner{% endblock %}
{% block title %}{{ announcement.title }} - Aktualności - Norda Biznes Partner{% endblock %}
{% block meta_description %}{{ announcement.excerpt or announcement.content|striptags|truncate(160) }}{% endblock %}
@ -62,9 +62,10 @@
color: var(--primary);
}
.category-internal { background: #dbeafe; color: #1d4ed8; }
.category-external { background: #fef3c7; color: #b45309; }
.category-event { background: #e0f2fe; color: #0369a1; }
.category-opportunity { background: #dcfce7; color: #15803d; }
.category-member_news { background: #fef3c7; color: #b45309; }
.category-partnership { background: #f3e8ff; color: #7c3aed; }
.meta-date {

View File

@ -1,8 +1,8 @@
{% extends "base.html" %}
{% block title %}Aktualnosci - Norda Biznes Partner{% endblock %}
{% block title %}Aktualności - Norda Biznes Partner{% endblock %}
{% block meta_description %}Aktualnosci i ogloszenia dla czlonkow Norda Biznes. Wydarzenia, okazje biznesowe, informacje od czlonkow.{% endblock %}
{% block meta_description %}Aktualności i ogłoszenia dla członków Norda Biznes Partner. Wydarzenia, okazje biznesowe, informacje od członków.{% endblock %}
{% block extra_css %}
<style>
@ -129,9 +129,10 @@
color: var(--primary);
}
.category-internal { background: #dbeafe; color: #1d4ed8; }
.category-external { background: #fef3c7; color: #b45309; }
.category-event { background: #e0f2fe; color: #0369a1; }
.category-opportunity { background: #dcfce7; color: #15803d; }
.category-member_news { background: #fef3c7; color: #b45309; }
.category-partnership { background: #f3e8ff; color: #7c3aed; }
.pinned-badge {
@ -270,8 +271,8 @@
{% block content %}
<div class="page-header">
<div class="container">
<h1>Aktualnosci Norda Biznes</h1>
<p>Informacje, wydarzenia i okazje dla czlonkow</p>
<h1>Aktualności Norda Biznes Partner</h1>
<p>Informacje, wydarzenia i okazje dla członków</p>
</div>
</div>