Change order of agenda fields
This commit is contained in:
parent
b202d12810
commit
5c18635418
@ -61,17 +61,6 @@ class Item(MPTTModel, SlideMixin):
|
||||
Flag, if the item is finished.
|
||||
"""
|
||||
|
||||
weight = models.IntegerField(default=0, verbose_name=ugettext_lazy("Weight"))
|
||||
"""
|
||||
Weight to sort the item in the agenda.
|
||||
"""
|
||||
|
||||
parent = TreeForeignKey('self', null=True, blank=True,
|
||||
related_name='children')
|
||||
"""
|
||||
The parent item in the agenda tree.
|
||||
"""
|
||||
|
||||
type = models.IntegerField(max_length=1, choices=ITEM_TYPE,
|
||||
default=AGENDA_ITEM, verbose_name=ugettext_lazy("Type"))
|
||||
"""
|
||||
@ -86,6 +75,17 @@ class Item(MPTTModel, SlideMixin):
|
||||
The intended duration for the topic.
|
||||
"""
|
||||
|
||||
parent = TreeForeignKey('self', null=True, blank=True,
|
||||
related_name='children')
|
||||
"""
|
||||
The parent item in the agenda tree.
|
||||
"""
|
||||
|
||||
weight = models.IntegerField(default=0, verbose_name=ugettext_lazy("Weight"))
|
||||
"""
|
||||
Weight to sort the item in the agenda.
|
||||
"""
|
||||
|
||||
related_sid = models.CharField(null=True, blank=True, max_length=63)
|
||||
"""
|
||||
Slide-ID to another object to show it in the agenda.
|
||||
|
Loading…
Reference in New Issue
Block a user