6f7af26f7b85e08b3a0ad8e2a62fe729f706313e
[koed-quiz.git] / apps / quiz / templatetags / quiz_tags.py
1 # -*- coding: utf-8 -*-
2 # This file is part of KOED-Quiz, licensed under GNU Affero GPLv3 or later.
3 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
4 #
5 from django import template
6 from django.utils.safestring import mark_safe
7 from quiz.models import Quiz
8
9 register = template.Library()
10
11
12 @register.simple_tag(takes_context=True)
13 def quiz_footer(context):
14     return mark_safe(context.get('request').current_quiz.footer)