app/django/contrib/gis/tests/urls.py
author Sverre Rabbelier <srabbelier@gmail.com>
Sun, 14 Dec 2008 00:33:59 +0000
changeset 741 2dc2c65c5f76
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Converted as_table to be a template tag This allows us to move all the HTML from python code (which made it extremely icky and unreadable) to Django templates, which is _a lot_ more readable, and makes it feasable for HTML/CSS experts to change the way these tables are generated. Patch by: Sverre Rabbelier

from django.conf.urls.defaults import *

urlpatterns = patterns('',
                       (r'^geoapp/', include('django.contrib.gis.tests.geoapp.urls')),
                       )