summaryrefslogtreecommitdiff
path: root/sublab_project/news/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'sublab_project/news/urls.py')
-rw-r--r--sublab_project/news/urls.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/sublab_project/news/urls.py b/sublab_project/news/urls.py
new file mode 100644
index 0000000..a1c5c0a
--- /dev/null
+++ b/sublab_project/news/urls.py
@@ -0,0 +1,8 @@
+from django.conf.urls.defaults import patterns, include, url
+from django.views.generic import ListView, DetailView
+
+from news.models import News
+
+urlpatterns = patterns('',
+ url(r'^$', ListView.as_view(model=News, paginate_by=8), name='news_list')
+)