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
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
2 matches
Mail list logo