Is there a Django ModelField that allows for multiple choices, aside from ManyToMany?

前端 未结 3 2167
后悔当初
后悔当初 2021-02-07 21:36

I\'d like the user to be able to make multiple selections via the admin interface, and store the result as a list of comma-separated values. A select-multiple or a list of check

3条回答
  •  花落未央
    2021-02-07 21:53

    This django snippet accomplishes the same with a much smaller footprint.

    http://djangosnippets.org/snippets/23/

    make sure to update those imports since they are pre version 1.0

提交回复
热议问题