Change order of agenda fields

This commit is contained in:
Norman Jäckel 2013-06-03 19:02:27 +02:00
parent b202d12810
commit 5c18635418

View File

@ -61,17 +61,6 @@ class Item(MPTTModel, SlideMixin):
Flag, if the item is finished. 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, type = models.IntegerField(max_length=1, choices=ITEM_TYPE,
default=AGENDA_ITEM, verbose_name=ugettext_lazy("Type")) default=AGENDA_ITEM, verbose_name=ugettext_lazy("Type"))
""" """
@ -86,6 +75,17 @@ class Item(MPTTModel, SlideMixin):
The intended duration for the topic. 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) related_sid = models.CharField(null=True, blank=True, max_length=63)
""" """
Slide-ID to another object to show it in the agenda. Slide-ID to another object to show it in the agenda.