diff options
author | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2013-10-30 20:56:22 (GMT) |
---|---|---|
committer | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2013-10-30 20:56:22 (GMT) |
commit | c5bcf2d04d594f6f8fff03d87d79377be52e8db5 (patch) | |
tree | 8b3bb79db0fab885b6b42bf59356b4061849bc7b | |
parent | b6457768e7feec8ca8ad0f6535f8fc91b046c799 (diff) |
updated ids with playlist instead of (live) moderation
-rw-r--r-- | nop/views.py | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/nop/views.py b/nop/views.py index 9e76d2f..0f4acbe 100644 --- a/nop/views.py +++ b/nop/views.py @@ -12,15 +12,16 @@ import time from datetime import datetime DB = 'nop' -MUSIKPROG_IDS = (1,5,17,34,60,81,89) - # 1 - unmodieriertes musikprogramm - # 5 - Abunda Lingva - ## 12 - aus den freien radios - # 17 - bumbumtschak - # 34 - fruehstück A - # 60 - musikprogramm bunt gemischt - # 81 - selchfleisch - # 89 - styrian underground +MUSIKPROG_IDS = ( + 1, # unmodieriertes musikprogramm + 206, # Abunda Lingva + 17, # bumbumtschak + 34, # fruehstück A + 374, # musikprogramm bunt gemischt + 81, # selchfleisch + 290, # styrian underground + 203 # Hotel Passage +) class NopForm(forms.Form): date = forms.DateField( |