Files @ a18e221dc6ce
Branch filter:

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

bkuhn
Move email subscribe box to the front page only.

It just looked wrong up there on top of the page. I know that's what I
suggested to Paul to do it, but 11 months later, when I finally accepted his
merge request, it just didn't make sense.
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)))