Lets say I have a django model looking like this:
class question(models.Model): order = models.IntegerField(\'Position\') question = models.CharField(max_len
Check this: django-orderedmodel.
This is a really simple implementation of abstract base class for items which can be ordered with admin interface. No external dependencies and easy to use.