We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e33400d commit 9629844Copy full SHA for 9629844
4 files changed
README.md
@@ -45,7 +45,7 @@ Le Health Data Safe est une initiative à but non lucratif visant la protection
45
* First Name *
46
* Last Name *
47
* Maid name
48
- * Nationality
+ * Country
49
* Date of birth *
50
* City
51
* Sexe
Technical_flow.md
@@ -34,7 +34,7 @@ They contains personal data with the following streams
34
- profile
35
- profile-name: Name / Surname
36
- event of type "contact/name-surname" & "contact/maiden-name" or "contact/vcard"
37
- - profile-nationality: - event of type "contact/nationality"
+ - profile-country: - event of type "contact/country"
38
- profile-date-of-birth: - event of type "date/iso-8601"
39
- profile-location: - event of type (to be discussed) "contact/vcard" or "location/city"
40
- profile-sex: - event of type "attributes/biological-sex"
common-data-defs.js
@@ -3,7 +3,7 @@ const patientBaseStreams = [
3
// profile
4
{id: 'profile', name: 'Profile'},
5
{id: 'profile-name', name: 'Name', parentId: 'profile'},
6
- {id: 'profile-nationality', name: 'Nationality', parentId: 'profile'},
+ {id: 'profile-country', name: 'Country', parentId: 'profile'},
7
{id: 'profile-date-of-birth', name: 'Date of Birth', parentId: 'profile'},
8
{id: 'profile-location', name: 'Location', parentId: 'profile'},
9
{id: 'profile-sex', name: 'Sex', parentId: 'profile'},
@@ -70,10 +70,10 @@ const formProfileContentBase = [
70
const formProfileContentX = [
71
...formProfileContentBase,
72
{
73
- streamId: 'profile-nationality',
74
- eventType: 'contact/nationality',
+ streamId: 'profile-address',
+ eventType: 'contact/country',
75
type: 'text',
76
- label: 'Nationality',
+ label: 'Country',
77
},
78
79
streamId: 'profile-sex',
dr-controler.js
@@ -82,7 +82,6 @@ async function showQuestionnary(questionaryId) {
82
document.getElementById('questionnary-view').style.display = 'block';
83
}
84
85
-const rowItems = ['name', 'surname', 'nationality'];
86
/**
87
* Update the patient list
88
*/
0 commit comments