Statistics
| Branch: | Tag: | Revision:

root / commissioning / apps / fscrud_django / fscrud_app / urls.py @ 9f1a1bd0

History | View | Annotate | Download (575 Bytes)

1
from django.conf.urls.defaults import *
2
from views import quotaholder_0_2
3

    
4
# Uncomment the next two lines to enable the admin:
5
# from django.contrib import admin
6
# admin.autodiscover()
7

    
8
urlpatterns = patterns('',
9
    # Example:
10
    # (r'^quota/', include('quota.foo.urls')),
11

    
12
    # Uncomment the admin/doc line below to enable admin documentation:
13
    # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
14

    
15
    # Uncomment the next line to enable the admin:
16
    # (r'^admin/', include(admin.site.urls)),
17
    (r'^0.2/(?P<call_name>[_A-Za-z0-9]*)', quotaholder_0_2),
18
)