urls.py 255 B

12345678910
  1. from django.conf.urls.defaults import *
  2. import views
  3. # Uncomment the next two lines to enable the admin:
  4. # from django.contrib import admin
  5. # admin.autodiscover()
  6. urlpatterns = patterns('',
  7. url(r'^multiply/', views.multiply, name='multiply'),
  8. )