Added search app

This commit is contained in:
Roberto Rosario
2011-02-03 22:52:25 -04:00
parent 5854a1ce50
commit 327a00ede6
15 changed files with 250 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
from django.conf.urls.defaults import *
urlpatterns = patterns('dynamic_search.views',
url(r'^search/$', 'search', (), 'search'),
)