source: src/django_gheat/wlheatmap/urls.py@ 9401

Last change on this file since 9401 was 9390, checked in by rick, 13 years ago

Stop duplication the website directive, needed to be wlheatmap instead.

While we are here, get rid of the 'HomeView', as I think we do not need it.

File size: 644 bytes
Line 
1from django.conf.urls.defaults import *
2from django.views.generic.simple import direct_to_template
3#from django.views.generic.base import TemplateView
4from django.conf import settings
5
6#class HomeView(TemplateView):
7# template_name = 'home.html'
8#
9#urlpatterns = patterns('',
10# ('^$', HomeView.as_view())
11#)
12
13urlpatterns = patterns('wlheatmap',
14 url(r'^$', direct_to_template, {'template' : 'home.html'}),
15 url(r'^tile/(?P<zoom>\d+)/(?P<x>\d+),(?P<y>\d+).png$', 'tile.serve_tile'),
16 url(r'^nodelist/(?P<zoom>\d+),(?P<lat>[0-9.]+),(?P<lon>[0-9.]+)$', 'nodelist.serve_nodelist'),
17 url(r'^filters/$', 'filters.serve_filters'),
18)
Note: See TracBrowser for help on using the repository browser.