fix errors in streamer; filter out diff in station.on_air

This commit is contained in:
bkfox
2017-07-20 18:33:17 +02:00
parent dcee776c03
commit 97e5945b7d
3 changed files with 27 additions and 24 deletions

View File

@ -49,8 +49,7 @@ class TrackInline(GenericTabularInline):
ct_fk_field = 'related_id'
model = Track
extra = 0
fields = ('artist', 'title', 'info', 'position')
readonly_fields = ('position',)
fields = ('artist', 'title', 'info', 'position', 'in_seconds', 'tags')
@admin.register(Sound)