Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rosskarchner/a4615823bec292afc7f983248b49f118 to your computer and use it in GitHub Desktop.
Save rosskarchner/a4615823bec292afc7f983248b49f118 to your computer and use it in GitHub Desktop.
class FilterDateField(forms.DateField):
def clean(self, value):
from sheerlike.templates import get_date_obj
if value:
try:
value = get_date_obj(value)
except Exception as e:
pass
return value
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment