Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
Add an integer priority field to the table in which you manually write the order and sort by this field when displaying this data on the page. If you need to change the order, change the values in this field.
class Town(models.Model):
title = models.CharField(
verbose_name=u'название'.
blank=True, null=True,
max_lenght=255,
)
resorts = models.ForeignKey(
Resorts,
related_name='resort_town',
verbose_name=u'город',
blank=True
)
order = models.PositivIntegerField()
class Meta:
ordering = ['order']
verbose_name = u'страна'
verbose_name_plural = u'страны'
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question