carartem04 Posted February 5, 2016 Report Posted February 5, 2016 class Article(models.Model): text = models.TextField() user = models.ForeginKey(User) I need some like this but when I add article, then I can select everyone user Here should be only login of user Quote
Active Members MrGrj Posted February 5, 2016 Active Members Report Posted February 5, 2016 Have a look at this widget. If you want to use it on a model you have to use: ModelMultipleChoiceField You can find several sources. 1 Quote
carartem04 Posted February 5, 2016 Author Report Posted February 5, 2016 20 minutes ago, MrGrj said: Have a look at this widget. If you want to use it on a model you have to use: ModelMultipleChoiceField You can find several sources. Thank you! Quote