private/personal
This commit is contained in:
parent
15d0a14d59
commit
044e820d57
2 changed files with 6 additions and 5 deletions
|
|
@ -22,8 +22,8 @@ class List(models.Model):
|
|||
modified = models.DateTimeField(auto_now=True)
|
||||
user = models.ForeignKey(User, related_name='lists')
|
||||
name = models.CharField(max_length=255)
|
||||
status = models.CharField(max_length=20, default='personal')
|
||||
_status = ['personal', 'public', 'featured']
|
||||
status = models.CharField(max_length=20, default='private')
|
||||
_status = ['private', 'public', 'featured']
|
||||
query = DictField(default={"static": True})
|
||||
type= models.CharField(max_length=255, default='static')
|
||||
description = models.TextField(default='')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue