Skip to content
Snippets Groups Projects
Commit 31406aa5 authored by Christian Pointner's avatar Christian Pointner
Browse files

Merge branch 'master' into stable

parents 8b02218b abadb84d
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,7 @@ from datetime import date, datetime, timedelta ...@@ -8,7 +8,7 @@ from datetime import date, datetime, timedelta
class BroadcastFormatAdmin(admin.ModelAdmin): class BroadcastFormatAdmin(admin.ModelAdmin):
list_display = ('format', 'enabled', 'admin_color') list_display = ('format', 'admin_color', 'enabled')
prepopulated_fields = {'slug': ('format',)} prepopulated_fields = {'slug': ('format',)}
...@@ -29,8 +29,8 @@ class ShowTopicAdmin(admin.ModelAdmin): ...@@ -29,8 +29,8 @@ class ShowTopicAdmin(admin.ModelAdmin):
class HostAdmin(admin.ModelAdmin): class HostAdmin(admin.ModelAdmin):
list_display = ('name',) list_display = ('name', 'is_active')
list_filter = ('is_always_visible', 'is_active') list_filter = ('is_active', 'is_always_visible')
class NoteAdmin(admin.ModelAdmin): class NoteAdmin(admin.ModelAdmin):
...@@ -45,10 +45,17 @@ class NoteAdmin(admin.ModelAdmin): ...@@ -45,10 +45,17 @@ class NoteAdmin(admin.ModelAdmin):
return super(NoteAdmin, self).get_queryset(request).filter(show__in=shows) return super(NoteAdmin, self).get_queryset(request).filter(show__in=shows)
def formfield_for_foreignkey(self, db_field, request=None, **kwargs): def formfield_for_foreignkey(self, db_field, request=None, **kwargs):
four_weeks = datetime.now() - timedelta(weeks=4) four_weeks_ago = datetime.now() - timedelta(weeks=4)
in_eight_weeks = datetime.now() + timedelta(weeks=8)
if db_field.name == 'timeslot': if db_field.name == 'timeslot':
shows = request.user.shows.all() try:
kwargs['queryset'] = TimeSlot.objects.filter(show__in=shows, start__gt=four_weeks) timeslot_id = int(request.get_full_path().split('/')[-2])
except ValueError:
shows = request.user.shows.all()
kwargs['queryset'] = TimeSlot.objects.filter(show__in=shows, note__isnull=True, start__gt=four_weeks_ago,
start__lt=in_eight_weeks)
else:
kwargs['queryset'] = TimeSlot.objects.filter(note=timeslot_id)
return super(NoteAdmin, self).formfield_for_foreignkey(db_field, request, **kwargs) return super(NoteAdmin, self).formfield_for_foreignkey(db_field, request, **kwargs)
...@@ -66,7 +73,7 @@ class ProgramSlotAdmin(admin.ModelAdmin): ...@@ -66,7 +73,7 @@ class ProgramSlotAdmin(admin.ModelAdmin):
inlines = (TimeSlotInline,) inlines = (TimeSlotInline,)
fields = (('rrule', 'byweekday'), ('dstart', 'tstart', 'tend'), 'until', 'is_repetition', 'automation_id') fields = (('rrule', 'byweekday'), ('dstart', 'tstart', 'tend'), 'until', 'is_repetition', 'automation_id')
list_display = ('get_show_name', 'byweekday', 'rrule', 'tstart', 'tend', 'until') list_display = ('get_show_name', 'byweekday', 'rrule', 'tstart', 'tend', 'until')
list_filter = ('byweekday', 'rrule', 'is_repetition', 'is_active') list_filter = ('is_active', 'byweekday', 'rrule', 'is_repetition')
ordering = ('byweekday', 'dstart') ordering = ('byweekday', 'dstart')
save_on_top = True save_on_top = True
search_fields = ('show__name',) search_fields = ('show__name',)
...@@ -96,8 +103,8 @@ class ProgramSlotInline(admin.TabularInline): ...@@ -96,8 +103,8 @@ class ProgramSlotInline(admin.TabularInline):
class ShowAdmin(admin.ModelAdmin): class ShowAdmin(admin.ModelAdmin):
filter_horizontal = ('hosts', 'owners', 'musicfocus', 'showinformation', 'showtopic') filter_horizontal = ('hosts', 'owners', 'musicfocus', 'showinformation', 'showtopic')
inlines = (ProgramSlotInline,) inlines = (ProgramSlotInline,)
list_display = ('name', 'short_description', 'broadcastformat') list_display = ('name', 'short_description', 'is_active')
list_filter = ('broadcastformat', 'showinformation', 'showtopic', 'musicfocus', 'is_active') list_filter = ('is_active', 'broadcastformat', 'showinformation', 'showtopic', 'musicfocus')
ordering = ('slug',) ordering = ('slug',)
prepopulated_fields = {'slug': ('name',)} prepopulated_fields = {'slug': ('name',)}
search_fields = ('name', 'short_description', 'description') search_fields = ('name', 'short_description', 'description')
......
...@@ -465,10 +465,10 @@ class TimeSlot(models.Model): ...@@ -465,10 +465,10 @@ class TimeSlot(models.Model):
verbose_name_plural = _("Time slots") verbose_name_plural = _("Time slots")
def __unicode__(self): def __unicode__(self):
start = self.start.strftime('%d. %b %Y %H:%M') start = self.start.strftime('%d.%m.%Y %H:%M')
end = self.end.strftime('%H:%M') end = self.end.strftime('%H:%M')
return u'%s: %s - %s' % (self.show, start, end) return u'%s - %s | %s' % (start, end, self.show.name)
def save(self, *args, **kwargs): def save(self, *args, **kwargs):
self.show = self.programslot.show self.show = self.programslot.show
......
Django==1.8.13 Django==1.8.14
MySQL-python==1.2.5 MySQL-python==1.2.5
Pillow==3.2.0 Pillow==3.3.0
PyYAML==3.11 PyYAML==3.11
django-tinymce==2.3.0 django-tinymce==2.3.0
python-dateutil==2.5.3 python-dateutil==2.5.3
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment