Merge with master.
[redakcja.git] / apps / catalogue / templatetags / common_tags.py
1 from django import template
2 register = template.Library()
3
4
5 @register.filter
6 def build_absolute_uri(uri, request):
7     return request.build_absolute_uri(uri)