aboutsummaryrefslogtreecommitdiffstats
path: root/archive/urls.py
blob: c57b15c874d24aed7ccdb510336810accc1d918e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- coding: utf-8 -*-
#
# urls.py for app 'page'
#

from django.conf.urls import patterns, include, url
from django.views.generic.base import RedirectView
from django.core.urlresolvers import reverse_lazy

from archive.views import ArchiveView


urlpatterns = patterns('',
    # notice list view
    url(r'^all$', ArchiveView.as_view(),
        name='archive_all'),
    url(r'^archive/all$',
        RedirectView.as_view(url=reverse_lazy('archive_all'))),
)