if callable(v[1]):
try:
value = v[1](value)
except (ValueError, TypeError):
pass
country = Country.objects.get(country_slug=self.kwargs.get('country_slug'))
country = get_object_or_404(Country, country_slug=self.kwargs.get('country_slug'))