Does the Django "timesince" filter work with less than "<=" values? I can only get it to work with greater than ">=" values.
I only want to show clients created in the past week. this code does not work.
{% for c in clients %}
{% if c.created|timesince <= '7 days' %}
<li><a href="">{{ c.name|title }}</a></li>
{% endif %}
{% endfor %}
thanks.