Coverage for website/announcements/templatetags/frontpage_articles.py: 100.00%
6 statements
« prev ^ index » next coverage.py v7.6.7, created at 2025-08-14 10:31 +0000
« prev ^ index » next coverage.py v7.6.7, created at 2025-08-14 10:31 +0000
1from django import template
3from announcements.models import FrontpageArticle
5register = template.Library()
8@register.inclusion_tag("announcements/frontpage_articles.html")
9def render_frontpage_articles():
10 return {"articles": [a for a in FrontpageArticle.objects.all() if a.is_visible]}