escape author for history
[redakcja.git] / apps / catalogue / templatetags / catalogue_files.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 from django.conf import settings
8 register = template.Library()
9
10
11 @register.filter
12 def as_media_for(uri, document):
13     if uri.startswith('file://'):
14         uri = "https://milpeer.eu%suploads/%d/%s" % (settings.MEDIA_URL, document.pk, uri[len('file://'):])
15     return uri