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')),
)