server/urls.py
author rougeronj
Tue, 31 Mar 2015 12:27:10 +0200
changeset 49 88cd0bb61c12
parent 35 cf8c306ab902
permissions -rw-r--r--
add ui-sortble lib to be able to sort the list of the slide in the book view - it sends a post request to the server to update the slides' order

from django.conf.urls import patterns, include, url
from django.contrib import admin

admin.autodiscover()

urlpatterns = patterns('',
    url(r'^admin/', include(admin.site.urls)),
    url(r'^ammico/', include('ammico.urls')),
)