421709e997f30bdd0018f4e3ab839847d8c45b30
[redakcja.git] / apps / toolbar / templatetags / toolbar_tags.py
1 # -*- coding: utf-8 -*-
2 #
3 # This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
4 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.  
5 #
6 from django import template
7 from toolbar import models
8
9 register = template.Library()
10
11 @register.inclusion_tag('toolbar/toolbar.html')
12 def toolbar():
13     return {'toolbar_groups': models.ButtonGroup.objects.all().select_related() }
14
15 @register.inclusion_tag('toolbar/button.html')
16 def toolbar_button(b):
17     return {'button': b}