Commit 9d083f2c authored by Ilya Simonov's avatar Ilya Simonov

fix add videos in playlist admin

parent 24aa2057
......@@ -51,6 +51,7 @@ class VideoAdmin(admin.ModelAdmin):
class PlayListAdmin(admin.ModelAdmin):
form = forms.PlaylistForm
list_display = ['id', 'title', 'type']
readonly_fields = ['created', 'updated']
list_filter = ('type', 'sort')
......
from django.contrib.admin.widgets import FilteredSelectMultiple
from django.forms import ModelForm
from .models import Video
from .models import Video, Playlist
class VideoForm(ModelForm):
......@@ -11,3 +11,12 @@ class VideoForm(ModelForm):
widgets = {
'categories': FilteredSelectMultiple('Verbose name', False),
}
class PlaylistForm(ModelForm):
class Meta:
model = Playlist
fields = '__all__'
widgets = {
'videos': FilteredSelectMultiple('Verbose name', False),
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment