summaryrefslogtreecommitdiffstats
path: root/feincms/views/generic/date_based.py
blob: 1b0474ad8589aae5c45306cf1a7ab4c62a75fdda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
from django.views.generic import date_based
from feincms.views.decorators import add_page_to_extra_context


archive_index = add_page_to_extra_context(date_based.archive_index)
archive_year = add_page_to_extra_context(date_based.archive_year)
archive_month = add_page_to_extra_context(date_based.archive_month)
archive_week = add_page_to_extra_context(date_based.archive_week)
archive_day = add_page_to_extra_context(date_based.archive_day)
archive_today = add_page_to_extra_context(date_based.archive_today)
object_detail = add_page_to_extra_context(date_based.object_detail)