Project

General

Profile

Statistics
| Branch: | Revision:

root / crm / crm / urls.py @ e680f143

History | View | Annotate | Download (662 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
from robocrm import views
6
admin.autodiscover()
7

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

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

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