1 # -*- coding: utf-8 -*-
2 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
3 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
5 from django import template
6 from infopages.models import InfoPage
8 register = template.Library()
11 @register.inclusion_tag('infopages/on_main.html')
12 def infopages_on_main():
13 objects = InfoPage.objects.exclude(main_page=None)
14 return {"objects": objects}