Re: Model representation with FK, exceeding queries

2017-05-15 Thread Cleiton Lima
I just found the problem. The plugin <https://github.com/yourlabs/django-autocomplete-light> I use to render this select is breaking in django 1.11. I really did not see this problem. Em sexta-feira, 12 de maio de 2017 14:03:23 UTC-3, Cleiton Lima escreveu: > > I do not know if it

Model representation with FK, exceeding queries

2017-05-12 Thread Cleiton Lima
I do not know if it is a bug or has already been commented # models.py class State(models.Model): name = models.CharField(_('name'), max_length=60) class Meta: verbose_name = _('state') verbose_name_plural = _('states') def __str__(self): return self.name c