summaryrefslogtreecommitdiffstats
path: root/retro/views.py
blob: 5ce6d19da1f87b31f357b7e164e37cd6dd947767 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from django.conf import settings
from django.http import Http404
from django.views.decorators.cache import cache_page
from django.views.generic.simple import direct_to_template


RETRO_YEAR_MAP = {
    2002: 'index-20020328.html',
    2003: 'index-20030330.html',
    2004: 'index-20040327.html',
    2005: 'index-20050328.html',
    2006: 'index-20060328.html',
    2007: 'index-20070324.html',
    2008: 'index-20080311.html',
    2009: 'index-20090327.html',
    2010: 'index-20100208.html',
    2011: 'index-20110212.html',
}


@cache_page(1800)
def retro_homepage(request, year):
    year = int(year)
    template = RETRO_YEAR_MAP.get(year, None)
    if template is None:
        raise Http404
    static_url = '%s%d/' % (settings.STATIC_URL, year)
    context = {
        'RETRO_STATIC_URL': static_url,
    }
    return direct_to_template(request, 'retro/%s' % template, context)

# vim: set ts=4 sw=4 et: