fnp
/
redakcja.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
attachment list for links + bad links in red
[redakcja.git]
/
apps
/
fileupload
/
urls.py
1
# -*- coding: utf-8 -*-
2
from django.conf.urls import patterns, url
3
from fileupload.views import UploadView
4
5
urlpatterns = patterns(
6
'',
7
url(r'^(?P<path>(?:.*/)?)$', UploadView.as_view(), name='fileupload'),
8
)