show the data of the json received from the server (normalize the exchanged data)
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')),
)