Order items with the django-admin interface

前端 未结 4 1700
夕颜
夕颜 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 14:49

    In case someone else is seeking the solution for that issue in 2017, I found the great package Django Admin Sortable

提交回复
热议问题