mirror of
https://github.com/django/django.git
synced 2025-10-13 16:59:35 +00:00
file uploads are no longer completely broken. Added tests for this as well. git-svn-id: http://code.djangoproject.com/svn/django/branches/unicode@5464 bcc190cf-cafb-0310-a4f2-bffc1f526a37
8 lines
186 B
Python
8 lines
186 B
Python
from django.conf.urls.defaults import *
|
|
import views
|
|
|
|
urlpatterns = patterns('',
|
|
(r'^no_template_view/$', views.no_template_view),
|
|
(r'^file_upload/$', views.file_upload_view),
|
|
)
|