django-searchable-select icon indicating copy to clipboard operation
django-searchable-select copied to clipboard

How to filter with ForienKey field

Open santhosh432 opened this issue 6 years ago • 0 comments


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

santhosh432 avatar Nov 14 '18 06:11 santhosh432