Files
dss/spa/debug.py
2014-03-16 00:36:45 +00:00

14 lines
355 B
Python

from django.conf.urls import url, patterns, include
from django.shortcuts import render_to_response
from django.template import RequestContext
urls = patterns(
'',
url(r'^typeahead/', 'spa.debug.typeahead'),
)
def typeahead(request):
return render_to_response(
'views/debug/typeahead.html',
context_instance=RequestContext(request))