django-searchable-select
django-searchable-select copied to clipboard
How to filter with ForienKey field
Class Model(model.Models):
city = models.CharField()
country = models.ForeignKey(Country)
def __str__(self):
return '{0}'.format(self.city)
Here i want to filter with country Please help me