Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 django-filtered-fields 并希望在我的表单中使用 ManyToManyByLetter 选择 UserProfiles(我的模型中的外键),但我希望它们按用户用户名的字母顺序列出。下面的代码不起作用。它给出了一个错误“无法解析关键字'user.username'”。
ManyToManyByLetter(UserProfile, field_name="user.username")
我希望有一些解决方案,但我找不到任何东西。