style
[redakcja.git] / apps / catalogue / templatetags / common_tags.py
1 # -*- coding: utf-8 -*-
2 from django import template
3 register = template.Library()
4
5
6 @register.filter
7 def build_absolute_uri(uri, request):
8     return request.build_absolute_uri(uri)