Skip to content

Commit

Permalink
adding iphone path
Browse files Browse the repository at this point in the history
  • Loading branch information
sbma44 committed Apr 5, 2010
1 parent f694181 commit 15d6b36
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions urls.py
Expand Up @@ -5,9 +5,9 @@
from django.contrib import admin
admin.autodiscover()

urlpatterns = patterns('',

(r'^/admin/', include(admin.site.urls)),
urlpatterns = patterns('',
(r'^/admin/', include(admin.site.urls)),)
(r'^/', include('gate.urls')),
(r'^iphone/', direct_to_template, {'template': 'iphone.html'})
(r'^.*', direct_to_template, {'template': 'default.html'})
)

0 comments on commit 15d6b36

Please sign in to comment.