You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Django developers
Hi !
I got some errors by using the Meta options order_with_respect_to:
<code>
class Category(PublicationBase, LocalisationBase):
ITEM_PER_PAGE = 12
name = models.CharField(max_length=255)
pictogram = models.ImageField(upload_to="categories", blank=True)
old_id = models.PositiveIntegerField(blank=True)
parent = models.ForeignKey("Category", blank=True, null=True)
class Meta:
ordering = ['name']
order_with_respect_to = 'parent'
I know you work really hard for us, but can I know if the bug will be
corrected shortly or not. With this information I I can take the
decision of patching or not django.