from django.conf.urls import url from marcador.views import bookmark_list, bookmark_user, bookmark_create, bookmark_edit urlpatterns = [ url(r'^create/$', bookmark_create, name='marcador_bookmark_create'), url(r'^edit/(?P\d+)/$', bookmark_edit, name='marcador_bookmark_edit'), url(r'^user/(?P[-\w]+)/$', bookmark_user, name='marcador_bookmark_user'), url(r'^$', bookmark_list, name='marcador_bookmark_list'), ]