% Sign in front of dates in Django

I get percentage signs in front of all my pages displaying dates. For example:

%04/%06/%2015

      

I'm not too sure why this is. At first I thought it might be a pytz issue, but that doesn't seem to be causing the problem.

What could be the problem?

+3


source to share


1 answer


A good chance that you use %

in the date

filter
. Confusingly, Django's format specifier date

doesn't use percentage signs.



+4


source







All Articles