How can I add something like a dropdown list or text input with the开发者_开发百科 tags as a search in django admin
class YourModel(models.Model):
...
tags = TagField()
But if you register your model, you'll have to choose a different tag_descriptor_attr
.
Checkout the overview file.
精彩评论