src/egonomy/urls.py
author cavaliet
Tue, 29 Jan 2013 12:52:55 +0100
changeset 15 64284803db94
parent 9 aee87529a698
child 17 38611b2c2782
permissions -rw-r--r--
view and create fragment views added

from django.conf.urls import patterns, include, url
from django.contrib.staticfiles.urls import staticfiles_urlpatterns

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

urlpatterns = patterns('',
    url(r'^$', 'egonomy.views.home', name='home'),
    url(r'^annotate/$', 'egonomy.views.annotate_picture', name='annotate_picture'),
    url(r'^viewfragment/$', 'egonomy.views.view_fragment', name='view_fragment'),
    url(r'^createfragment/$', 'egonomy.views.create_fragment', name='create_fragment'),

    # Uncomment the admin/doc line below to enable admin documentation:
    url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
    # Uncomment the next line to enable the admin:
    url(r'^admin/', include(admin.site.urls)),
)
urlpatterns += staticfiles_urlpatterns()