mirror of
https://gitlab.science.ru.nl/technicie/MarietjeDjango.git
synced 2025-12-10 09:12:23 +01:00
Volume control from the web interface.
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
from django.contrib import admin
|
||||
from .models import Queue, Playlist, PlaylistSong
|
||||
from .models import Queue, Playlist, PlaylistSong, QueueCommand
|
||||
|
||||
|
||||
admin.site.register(Playlist)
|
||||
@ -9,3 +9,6 @@ admin.site.register(PlaylistSong)
|
||||
@admin.register(Queue)
|
||||
class OrderAdmin(admin.ModelAdmin):
|
||||
list_display = ('name', 'playlist', 'random_playlist')
|
||||
|
||||
|
||||
admin.site.register(QueueCommand)
|
||||
|
||||
Reference in New Issue
Block a user