summaryrefslogtreecommitdiff
path: root/program
diff options
context:
space:
mode:
authorErnesto Rico-Schmidt <e.rico.schmidt@gmail.com>2013-03-08 21:51:07 (GMT)
committerErnesto Rico-Schmidt <e.rico.schmidt@gmail.com>2013-03-08 21:51:07 (GMT)
commitf0df4385f08b8891439476e3a0905bd43463830c (patch)
tree76dbb8fdd26fa6a3559b37fee4aa5534f311ba71 /program
parent66de5f8ef5bc2c621f032e0cada559c085e69ea5 (diff)
removed unused tiny_mce
Diffstat (limited to 'program')
-rw-r--r--program/templatetags/content_boxes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/templatetags/content_boxes.py b/program/templatetags/content_boxes.py
index 7108c5a..59bcdb0 100644
--- a/program/templatetags/content_boxes.py
+++ b/program/templatetags/content_boxes.py
@@ -7,7 +7,7 @@ from program.models import BroadcastFormat, MusicFocus, ShowInformation, ShowTop
@register.inclusion_tag('program/boxes/broadcastformat.html')
def broadcastformat():
- broadcastformats = BroadcastFormat.objects.all()
+ broadcastformats = BroadcastFormat.objects.filter(enabled=True)
return {'broadcastformats': broadcastformats}
@register.inclusion_tag('program/boxes/musicfocus.html')