Project

General

Profile

Statistics
| Branch: | Revision:

root / crm / crm / urls.py @ 314bdec9

History | View | Annotate | Download (635 Bytes)

1
from django.conf.urls import patterns, include, url
2

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

    
7
urlpatterns = patterns('',
8
    # Examples:
9
    # url(r'^$', 'crm.views.home', name='home'),
10
    # url(r'^crm/', include('crm.foo.urls')),
11
    url(r'^roboauth/(?P<rfid_tag>\0x[0-9Aa-Ff]+)/(?P<mach_num>\d+)', 'crm.robocrm.roboauth'),
12

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

    
16
    # Uncomment the next line to enable the admin:
17
    url(r'^admin/', include(admin.site.urls)),
18
)