[Answer]-Django Template Filters on Session Values?

1👍

django > 1.5 does not use pickle, so any value when serialized loose its type. So you are right: session values are not stored as date type. Store the values already formatted for your needs should solve the issue

see https://docs.djangoproject.com/en/1.7/topics/http/sessions/#session-serialization

👤sax

Leave a comment