Let's say that I have a django model that looks like this:
class question(models.Model): order = models.IntegerField('Position') question = models.CharField(max_length= 400) answer = models.TextField() published = models.BooleanField() def __unicode__(self): return self.question
In my opinion, I show all the questions sorted in ascending order field.
My question is: is there an easy way to change the order field in the django admin interface? Right now I have to go to edit the question, than to see which number to put in the order field, and maybe even reorder all the other elements. What I really want will be up and down on the admin page, where all the questions are listed.
Is it possible?
django django-models django-admin
Kai
source share