server/urls.py
author rougeronj
Tue, 07 Apr 2015 12:00:14 +0200
changeset 74 44ebb0d0b836
parent 35 cf8c306ab902
permissions -rw-r--r--
get the book id of the book to delete from the template instead of $index (because we reorder the list so $index are not really clear anymore)

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