Revision 428081e0
Added by Jérôme Schneider over 12 years ago
calebasse/dossiers/views.py | ||
---|---|---|
8 | 8 |
from calebasse.agenda.models import Occurrence |
9 | 9 |
from calebasse.dossiers.models import PatientRecord, Status, FileState, create_patient |
10 | 10 |
from calebasse.dossiers.forms import (SearchForm, CivilStatusForm, StateForm, |
11 |
PhysiologyForm, FamillyForm, InscriptionForm, GeneralForm,
|
|
12 |
NewPatientRecordForm) |
|
11 |
PhysiologyForm, FamilyForm, InscriptionForm, GeneralForm, |
|
12 |
NewPatientRecordForm, TransportFrom, FollowUpForm)
|
|
13 | 13 |
from calebasse.dossiers.states import STATES_MAPPING, STATE_CHOICES_TYPE |
14 | 14 |
from calebasse.ressources.models import Service |
15 | 15 |
|
... | ... | |
75 | 75 |
'id': CivilStatusForm, |
76 | 76 |
'physiology': PhysiologyForm, |
77 | 77 |
'inscription': InscriptionForm, |
78 |
'familly': FamillyForm, |
|
78 |
'family': FamilyForm, |
|
79 |
'transport': TransportFrom, |
|
80 |
'followup': FollowUpForm |
|
79 | 81 |
} |
80 | 82 |
template_name = 'dossiers/patientrecord_update.html' |
81 | 83 |
success_url = './view' |
Also available in: Unified diff
dossiers: rename familly to family and add transport and follow-up forms