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

from django.conf.urls import patterns, include, url

from archive.views import ArchiveView


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