Add example application to test_project
[django-pagination.git] / linaro_django_pagination / test_project / urls.py
index 734ebb5..06f3e77 100644 (file)
@@ -31,6 +31,8 @@
 from django.conf.urls.defaults import (
     patterns, url, include, handler500, handler404)
 
-
 # Empty patterns so that test project can be started and would work normally
-urlpatterns = patterns('',)
+urlpatterns = patterns(
+    '', 
+    url('', include('example.urls')),
+)