Blame view

src/core/pyros_django/scientific_program/urls.py 4.02 KB
089c0115   Alexis Koralewski   add new version (...
1
2
3
4
5
from django.conf.urls import url
from django.urls import path
from . import views

urlpatterns = [
5a434264   Alexis Koralewski   New version of Sc...
6
7
8
9
10
11
12
    path("scientific_program_index/",views.index_scientific_program,name="index_scientific_program"),
    # proposals / scientific programs
    path('<int:id_SP>/<int:id_period>/register',views.accept_sp_invitation,name="sp_register"),
    path('add_SP/', views.create_scientific_program,name='create_scientific_program'),
    path('add_SP_with_template/<int:id_SP>', views.create_scientific_program_with_template,name='create_scientific_program_with_template'),
    path('add_SP_Period/<int:id_SP>/', views.create_scientific_program_period,name='create_scientific_program_period'),
    path('repropose_scientific_program/<int:id_SP>/<int:id_SP_Period>', views.create_scientific_program_period,name='repropose_scientific_program'),
a6e63604   Alexis Koralewski   adding agentSP an...
13
    path('detail_scientific_program/<int:id>/', views.detail_scientific_program,name='detail_scientific_program'),
5a434264   Alexis Koralewski   New version of Sc...
14
15
    path('detail_scientific_program_period/<int:id_sp>/<int:id_period>', views.detail_scientific_program_period,name='detail_scientific_program_period'),
    path('edit_scientific_program_period/<int:id_sp>/<int:id_period>', views.edit_scientific_program_period,name='edit_scientific_program_period'),
e00964fc   Alexis Koralewski   new version of ti...
16
17
    path('delete_scientific_program_period/<int:id_sp>/<int:id_period>', views.delete_scientific_program_period,name='delete_scientific_program_period'),
    path('delete_scientific_program/<int:id_sp>', views.delete_scientific_program,name='delete_scientific_program'),
5a434264   Alexis Koralewski   New version of Sc...
18
    path('submit_proposal/<int:id>/',views.submit_proposal,name="submit_proposal"),
641ec717   Alexis Koralewski   add form to assoc...
19
    path('associate_tac_to_scientific_program/<int:id_sp>/<int:id_period>/',views.associate_tac_to_scientific_program,name="associate_tac_to_scientific_program"),
089c0115   Alexis Koralewski   add new version (...
20
    path('scientific_program_list', views.scientific_program_list,name='scientific_program_list'),
5a434264   Alexis Koralewski   New version of Sc...
21
    path('own_scientific_program_list', views.own_scientific_program_list,name='own_scientific_program_list'),
5a434264   Alexis Koralewski   New version of Sc...
22
23
24
25
    path("list_evaluated_scientific_program",views.list_evaluated_scientific_program,name="list_evaluated_scientific_program"),
    path("list_submitted_scientific_program",views.list_submitted_scientific_program,name="list_submitted_scientific_program"),
    path("list_scientific_program_as_template",views.list_scientific_program_as_template,name="list_scientific_program_as_template"),
    path("list_scientific_program_period_repropose",views.list_scientific_program_period_repropose,name="list_scientific_program_period_repropose"),
641ec717   Alexis Koralewski   add form to assoc...
26
    path("list_drafted_scientific_program",views.list_drafted_scientific_program,name="list_drafted_scientific_program"),
5a434264   Alexis Koralewski   New version of Sc...
27
28
    path("get_proposal_timeline",views.get_proposal_timeline,name="get_proposal_timeline"),
    # institute
089c0115   Alexis Koralewski   add new version (...
29
30
31
32
33
    path('create_institute', views.create_institute,name='create_institute'),
    path('institute_list', views.institute_list,name='institute_list'),
    path('edit_institute/<int:id>/', views.edit_institute,name='edit_institute'),
    path('detail_institute/<int:id>/', views.detail_institute,name='detail_institute'),
    path('delete_institute/<int:id>/', views.delete_institute,name='delete_institute'),
5a434264   Alexis Koralewski   New version of Sc...
34
    # period
089c0115   Alexis Koralewski   add new version (...
35
36
37
38
39
    path('create_period', views.create_period,name='create_period'),
    path('period_list', views.period_list,name='period_list'),
    path('edit_period/<int:id>/', views.edit_period,name='edit_period'),
    path('detail_period/<int:id>/', views.detail_period,name='detail_period'),
    path('delete_period/<int:id>/', views.delete_period,name='delete_period'),
077d5a23   Alexis Koralewski   adding science th...
40
41
42
43
44
45
    # science theme
    path('add_science_theme', views.add_science_theme,name='add_science_theme'),
    path('science_theme_list', views.science_theme_list,name='science_theme_list'),
    path("detail_science_theme/<int:id>/",views.detail_science_theme,name="detail_science_theme"),
    path("edit_science_theme/<int:id>/",views.edit_science_theme,name="edit_science_theme"),
    path("delete_science_theme/<int:id>/",views.delete_science_theme,name="delete_science_theme"),
a6e63604   Alexis Koralewski   adding agentSP an...
46
    path("test_tac_auto",views.test_tac_auto,name="test_tac_auto")
089c0115   Alexis Koralewski   add new version (...
47
]