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

Merge branch 'master' into stable

parents 31406aa5 bb828a37
No related branches found
No related tags found
No related merge requests found
...@@ -110,7 +110,7 @@ class ShowAdmin(admin.ModelAdmin): ...@@ -110,7 +110,7 @@ class ShowAdmin(admin.ModelAdmin):
search_fields = ('name', 'short_description', 'description') search_fields = ('name', 'short_description', 'description')
fields = ( fields = (
'predecessor', 'broadcastformat', 'name', 'slug', 'image', 'image_enabled', 'short_description', 'description', 'predecessor', 'broadcastformat', 'name', 'slug', 'image', 'image_enabled', 'short_description', 'description',
'email', 'website', 'automation_id', 'hosts', 'owners', 'showinformation', 'showtopic', 'email', 'website', 'hosts', 'owners', 'showinformation', 'showtopic',
'musicfocus', 'musicfocus',
) )
......
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('program', '0007_show_remove_cba_series_id'),
]
operations = [
migrations.RemoveField(
model_name='show',
name='automation_id',
),
]
...@@ -244,7 +244,6 @@ class Show(models.Model): ...@@ -244,7 +244,6 @@ class Show(models.Model):
email = models.EmailField(_("E-Mail"), blank=True, null=True) email = models.EmailField(_("E-Mail"), blank=True, null=True)
website = models.URLField(_("Website"), blank=True, null=True) website = models.URLField(_("Website"), blank=True, null=True)
is_active = models.BooleanField(_("Is active"), default=True, editable=False) is_active = models.BooleanField(_("Is active"), default=True, editable=False)
automation_id = models.IntegerField(_("Automation ID"), blank=True, null=True, choices=get_automation_id_choices())
created = models.DateTimeField(auto_now_add=True, editable=False) created = models.DateTimeField(auto_now_add=True, editable=False)
last_updated = models.DateTimeField(auto_now=True, editable=False) last_updated = models.DateTimeField(auto_now=True, editable=False)
......
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