('text',models.TextField(help_text='You also can include any extra information here like a context if you want.',verbose_name='Quote')),
('authors',models.ManyToManyField(blank=True,help_text='This can be left empty if the author is unknown or if there is no specific author.',null=True,related_name='quotes',to='abi.AbiPerson',verbose_name='Author(s)')),
('number_of_persons',models.PositiveIntegerField(default=1,verbose_name='Number of selectable persons')),
('group',models.ForeignKey(help_text='The persons in this group will be selectable for rankings in this category.',on_delete=django.db.models.deletion.CASCADE,related_name='ranking_categories',to='abi.abigroup',verbose_name='Gruppe')),