tutorial and help texts for tags in new resource form
[redakcja.git] / apps / catalogue / templatetags / common_tags.py
1 # -*- coding: utf-8 -*-
2 #
3 # This file is part of MIL/PEER, licensed under GNU Affero GPLv3 or later.
4 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
5 #
6 from django import template
7 register = template.Library()
8
9
10 @register.filter
11 def build_absolute_uri(uri, request):
12     return request.build_absolute_uri(uri)