Files @ 6850a655dcda
Branch filter:

Location: website/www/conservancy/apps/news/templatetags/date_within.py

bkuhn
No banner done for this one:

<bkuhn> tony: also, do you want a banner, ala
http://sfconservancy.org/img/conservancy-supporter-header.png ?
[16:09]
<tony> nah, this is such a short term thing. I don't think it's necessary
1
2
3
4
5
6
7
8
9
from django import template
from datetime import timedelta, datetime

register = template.Library()

@register.filter
def date_within_past_days(value, arg):
    # question: does datetime.now() do a syscall each time is it called?
    return value > (datetime.now() - timedelta(days=int(arg)))