X-Git-Url: http://mmka.chem.univ.gda.pl/gitweb/?a=blobdiff_plain;ds=sidebyside;f=django_simple%2Ftodo%2Furls.py;h=5543e47d6fdff3ed2eaa7aee96212aa0ae7c3b76;hb=62a4475b3c221974500e82318db4875d01257c68;hp=8f9d702c5015093f39fbd2b972809771b4960c3b;hpb=5a52e318fbba09f787c91fadc8d364d16c2d452d;p=django_unres.git diff --git a/django_simple/todo/urls.py b/django_simple/todo/urls.py index 8f9d702..5543e47 100644 --- a/django_simple/todo/urls.py +++ b/django_simple/todo/urls.py @@ -21,5 +21,7 @@ urlpatterns = [ url(r'^details/(?P\d+)/$', views.details,name='details'), url(r'^details/(?P\d+)/restart/$', views.restart,name='restart'), url(r'^details1/(?P\w+)/(?P\d+)/$', views.details1,name='details1'), + url(r'^details1/(?P\w+)/(?P\d+)/restart/$', views.restart1,name='restart1'), url(r'^delete/(?P\d+)/$', views.delete), + url(r'(?P\d+)/all.zip$', views.zip_all_files), ]