Order items with the django-admin interface

前端 未结 4 1689
夕颜
夕颜 2021-02-08 14:23

Lets say I have a django model looking like this:

class question(models.Model):
  order = models.IntegerField(\'Position\')
  question = models.CharField(max_len         


        
4条回答
  •  终归单人心
    2021-02-08 15:02

    You can check:

    http://docs.djangoproject.com/en/dev/ref/contrib/admin/#django.contrib.admin.ModelAdmin.list_editable

提交回复
热议问题