Statistics
| Branch: | Tag: | Revision:

root / urls.py @ d7f0ad6e

History | View | Annotate | Download (368 Bytes)

1
# vim: ts=4 sts=4 et ai sw=4 fileencoding=utf-8
2
#
3
# Copyright © 2010 Greek Research and Technology Network
4
#
5

    
6
from django.conf.urls.defaults import *
7

    
8
urlpatterns = patterns('',
9
    (r'^i18n/', include('django.conf.urls.i18n')),
10
    (r'^auth/api/', include('synnefo.auth.urls')),
11
    (r'^api/', include('synnefo.api.urls')),
12
    (r'^', include('synnefo.ui.urls')),
13
)