forked from 0x2620/pandora
remove dialogs with state
This commit is contained in:
parent
50e5c6b760
commit
d3225ad4af
6 changed files with 14 additions and 17 deletions
|
|
@ -34,8 +34,8 @@ class List(models.Model):
|
|||
icon = models.ImageField(default=None, blank=True,
|
||||
upload_to=lambda i, x: i.path("icon.jpg"))
|
||||
|
||||
view = models.TextField(default=settings.CONFIG['user']['ui']['listView'])
|
||||
sort = TupleField(default=settings.CONFIG['user']['ui']['listSort'], editable=False)
|
||||
view = models.TextField(default=lambda: settings.CONFIG['user']['ui']['listView'])
|
||||
sort = TupleField(default=lambda: settings.CONFIG['user']['ui']['listSort'], editable=False)
|
||||
|
||||
poster_frames = TupleField(default=[], editable=False)
|
||||
|
||||
|
|
|
|||
|
|
@ -11,6 +11,8 @@ from django.conf import settings
|
|||
from django.contrib import admin
|
||||
admin.autodiscover()
|
||||
|
||||
import monkey_patch.models
|
||||
|
||||
from api import actions
|
||||
actions.autodiscover()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue