X-Git-Url: http://mmka.chem.univ.gda.pl/gitweb/?a=blobdiff_plain;f=qcg%2Furls.py;h=f78447d10c6781aeb8c97316a1be02c0710da6d3;hb=9e9b697db82a9dbd7b3fa9f6d8aba80a1d606732;hp=6d9f0cc2c0b38793e541adcd7391bd2e686f994d;hpb=2698fc8f476233bcef6526cdcbc9fe37e57ca34d;p=qcg-portal.git diff --git a/qcg/urls.py b/qcg/urls.py index 6d9f0cc..f78447d 100644 --- a/qcg/urls.py +++ b/qcg/urls.py @@ -13,10 +13,15 @@ urlpatterns = patterns('', url(r'^$', views.index, name='index'), url(r'^jobs/$', views.jobs_list, name='jobs'), + url(r'^job/templates/$', views.job_templates, name='job_templates'), url(r'^job/submit/$', views.job_submit, name='job_submit'), + url(r'^job/template/submit/(?P\d+)/$', views.job_submit, name='template_submit'), + url(r'^job/template/delete/(?P\d+)/$', views.template_delete, name='template_delete'), + url(r'^job/cancel/(?P[\w]+)/$', views.job_cancel, name='job_cancel'), url(r'^job/clean/(?P[\w]+)/$', views.job_clean, name='job_clean'), + url(r'^job/save/template/(?P[\w]+)/$', views.job_save_template, name='job_save_template'), url(r'^task/cancel/(?P[\w]+)/(?P[\w]+)/$', views.task_cancel, name='task_cancel'), url(r'^task/clean/(?P[\w]+)/(?P[\w]+)/$', views.task_clean, name='task_clean'),