Projet

Général

Profil

Télécharger (4,13 ko) Statistiques
| Branche: | Tag: | Révision:

calebasse / calebasse / dossiers / urls.py @ 50584085

1
from django.conf.urls import patterns, url
2

    
3
urlpatterns = patterns('calebasse.dossiers.views',
4
        url(r'^$', 'patientrecord_home'),
5
        url(r'^quotations$', 'patientrecord_quotations'),
6
        url(r'^waiting-queue$', 'patientrecord_waiting_queue'),
7
        url(r'^new$', 'new_patient_record'),
8
        url(r'^(?P<pk>\d+)/view$', 'patient_record'),
9
        url(r'^(?P<pk>\d+)/print$', 'patient_record_print', name='patientrecord_print'),
10
        url(r'^(?P<pk>\d+)/tab1$', 'tab1_general'),
11
        url(r'^(?P<pk>\d+)/tab2$', 'tab2_fiche_adm'),
12
        url(r'^(?P<pk>\d+)/tab3$', 'tab3_addresses'),
13
        url(r'^(?P<pk>\d+)/tab4$', 'tab4_notifs'),
14
        url(r'^(?P<pk>\d+)/tab5$', 'tab5_old_acts'),
15
        url(r'^(?P<pk>\d+)/tab6$', 'tab6_next_rdv'),
16
        url(r'^(?P<pk>\d+)/tab7$', 'tab7_socialisation'),
17
        url(r'^(?P<pk>\d+)/tab8$', 'tab8_medical'),
18
        url(r'^(?P<pk>\d+)/delete$', 'patientrecord_delete'),
19
        url(r'^(?P<pk>\d+)/update/paper_id$', 'update_paper_id'),
20
        url(r'^(?P<patientrecord_id>\d+)/update-state$', 'state_form'),
21
        url(r'^(?P<patientrecord_id>\d+)/address/new$', 'new_patient_address'),
22
        url(r'^(?P<patientrecord_id>\d+)/address/(?P<pk>\d+)/update$', 'update_patient_address'),
23
        url(r'^(?P<patientrecord_id>\d+)/address/(?P<pk>\d+)/del$', 'delete_patient_address'),
24
        url(r'^(?P<patientrecord_id>\d+)/contact/new$', 'new_patient_contact'),
25
        url(r'^(?P<patientrecord_id>\d+)/contact/(?P<pk>\d+)/update$', 'update_patient_contact'),
26
        url(r'^(?P<patientrecord_id>\d+)/contact/(?P<pk>\d+)/del$', 'delete_patient_contact'),
27
        url(r'^(?P<patientrecord_id>\d+)/healthcare_treatment/new$', 'new_healthcare_treatment'),
28
        url(r'^(?P<patientrecord_id>\d+)/healthcare_treatment/(?P<pk>\d+)/update$', 'update_healthcare_treatment'),
29
        url(r'^(?P<patientrecord_id>\d+)/healthcare_treatment/(?P<pk>\d+)/del$', 'delete_healthcare_treatment'),
30
        url(r'^(?P<patientrecord_id>\d+)/healthcare_diagnostic/new$', 'new_healthcare_diagnostic'),
31
        url(r'^(?P<patientrecord_id>\d+)/healthcare_diagnostic/(?P<pk>\d+)/update$', 'update_healthcare_diagnostic'),
32
        url(r'^(?P<patientrecord_id>\d+)/healthcare_diagnostic/(?P<pk>\d+)/del$', 'delete_healthcare_diagnostic'),
33
        url(r'^(?P<patientrecord_id>\d+)/healthcare_notification/new$', 'new_healthcare_notification'),
34
        url(r'^(?P<patientrecord_id>\d+)/healthcare_notification/(?P<pk>\d+)/update$', 'update_healthcare_notification'),
35
        url(r'^(?P<patientrecord_id>\d+)/healthcare_notification/(?P<pk>\d+)/del$', 'delete_healthcare_notification'),
36
        url(r'^(?P<patientrecord_id>\d+)/socialisation/new$', 'new_socialisation_duration'),
37
        url(r'^(?P<patientrecord_id>\d+)/socialisation/(?P<pk>\d+)/update$', 'update_socialisation_duration'),
38
        url(r'^(?P<patientrecord_id>\d+)/socialisation/(?P<pk>\d+)/del$', 'delete_socialisation_duration'),
39
        url(r'^(?P<patientrecord_id>\d+)/state/(?P<pk>\d+)/update$', 'update_patient_state'),
40
        url(r'^(?P<patientrecord_id>\d+)/state/(?P<pk>\d+)/del$', 'delete_patient_state'),
41
        url(r'^(?P<patientrecord_id>\d+)/mdph_request/new$', 'new_mdph_request'),
42
        url(r'^(?P<patientrecord_id>\d+)/mdph_request/(?P<pk>\d+)/update$', 'update_mdph_request'),
43
        url(r'^(?P<patientrecord_id>\d+)/mdph_request/(?P<pk>\d+)/del$', 'delete_mdph_request'),
44
        url(r'^(?P<patientrecord_id>\d+)/mdph_response/new$', 'new_mdph_response'),
45
        url(r'^(?P<patientrecord_id>\d+)/mdph_response/(?P<pk>\d+)/update$', 'update_mdph_response'),
46
        url(r'^(?P<patientrecord_id>\d+)/mdph_response/(?P<pk>\d+)/del$', 'delete_mdph_response'),
47
        url(r'^(?P<patientrecord_id>\d+)/generate$', 'generate_rtf_form'),
48
        url(r'^(?P<patientrecord_id>\d+)/create-directory$', 'create_directory', name="create_directory"),
49
        url(r'^(?P<patientrecord_id>\d+)/prescription-transport$', 'prescription_transport'),
50
        url(r'^(?P<patientrecord_id>\d+)/protection/new$', 'new_protection'),
51
        url(r'^(?P<patientrecord_id>\d+)/protection/(?P<pk>\d+)/update$', 'update_protection'),
52
        url(r'^(?P<patientrecord_id>\d+)/protection/(?P<pk>\d+)/del$', 'delete_protection'),)
(10-10/12)