summaryrefslogtreecommitdiff
path: root/program/templatetags
diff options
context:
space:
mode:
authorErnesto Rico-Schmidt <e.rico.schmidt@gmail.com>2014-02-28 19:00:45 (GMT)
committerErnesto Rico-Schmidt <e.rico.schmidt@gmail.com>2014-02-28 19:00:45 (GMT)
commit0c00f412dc5d8ccba552f3633993a4696e0d6b55 (patch)
treed299cb6bcb60dfc99ad70f1d8cfb100f8aea71a6 /program/templatetags
parentabc439740a24c503b8756aa30c57281a4cf6ad31 (diff)
parentd4c75b4893bfcb28e300ff5e10dc9cd0993f8537 (diff)
Merge branch 'master' of https://github.com/nnrcschmdt/helsinki
Diffstat (limited to 'program/templatetags')
-rw-r--r--program/templatetags/content_boxes.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/program/templatetags/content_boxes.py b/program/templatetags/content_boxes.py
index 59bcdb0..b56f0d2 100644
--- a/program/templatetags/content_boxes.py
+++ b/program/templatetags/content_boxes.py
@@ -5,22 +5,22 @@ register = template.Library()
from program.models import BroadcastFormat, MusicFocus, ShowInformation, ShowTopic
-@register.inclusion_tag('program/boxes/broadcastformat.html')
+@register.inclusion_tag('boxes/broadcastformat.html')
def broadcastformat():
broadcastformats = BroadcastFormat.objects.filter(enabled=True)
return {'broadcastformats': broadcastformats}
-@register.inclusion_tag('program/boxes/musicfocus.html')
+@register.inclusion_tag('boxes/musicfocus.html')
def musicfocus():
musicfoci = MusicFocus.objects.all()
return {'musicfoci': musicfoci}
-@register.inclusion_tag('program/boxes/showinformation.html')
+@register.inclusion_tag('boxes/showinformation.html')
def showinformation():
showinformations = ShowInformation.objects.all()
return {'showinformations': showinformations}
-@register.inclusion_tag('program/boxes/showtopic.html')
+@register.inclusion_tag('boxes/showtopic.html')
def showtopic():
showtopics = ShowTopic.objects.all()
return {'showtopics': showtopics}