aboutsummaryrefslogtreecommitdiffstats
path: root/notice/urls.py
blob: 93622139b2dac152f04ee2835b4e54191b15cf1f (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 notice.views import ListNoticeView


urlpatterns = patterns('',
    # notice list view
    url(r'^list/$', ListNoticeView.as_view(),
        name='list_notice'),
)