I'm not sure why, but this condition will never evaluate True for me. I'm feeding it datetime.today() in the urls file. Am I missing something?
Template:
{% load humanize %}
{{ entry.date|naturalday }} {# Evals to "today" #}
{% ifequal entry.date|naturalday "today" %}
True
{{ entry.date|date:"fA"|lower }} {{ entry.date|naturalday|title }}
{% else %}
False
{{ entry.date|naturalday|title }}
{% endifequal %}
I just tested this under Django 1.1.1 and it works just fine for me.
Which version of Django are you running?
However, there are a few other issues that could be causing you problems:
I also noticed that in your question you have
{% load humaize %}
, which contains a typo (should be{% load humanize %}
). I'm not sure if this is in your real code or just in your question though.If you are really using
datetime.today()
in yoururls.py
, as you say, please be aware that this could cause problems, since the value is only going to be calculated once, when theextra_context
dictionary is first created (since the value of "today" will only ever be calculated once). This could mean the code will work on the first day the app is running, then fail the second day. You likely wouldn't notice this until you deploy to an environment where the app runs overnight without being restarted.If you want it to really be "today", just pass in the function
datetime.today
rather thandatetime.today()
. That way the template will call it on each render.