Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update index.md #18

Open
wants to merge 3 commits into
base: new_andrea_testing
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 33 additions & 2 deletions content/en/docs/operating/baseline-assessment/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,14 @@ Follow the steps below to insert a medication record:

11. Click on Frequency. Type a value. The amount must be complemented with the Period unit
12. Click on Period unit. Select a value from the menu
13. Click on Period. Type a value
13. Click on Period. Type a value

**Example 1: a patient has to take 1 dose per day. Insert the following data:
Frequency: 1; Period unit: day; Period: 1.**

**Example 2: a patient has to take his medicine every 8 hours. Insert the following data:
Frequency: 1; Period unit: hour; Period: 8.**


<figure id="Pic 27" >
<img src="Baseline Assessment Images/Pic 27.png" alt="Patient">
Expand Down Expand Up @@ -279,6 +286,29 @@ After registering a medication, it appears as a new record in the Medications ta
**Note: if you forget to insert the dosage, the patient will not receive the notifications to remind him take the medications.**

The steps to follow in the medication tab are also shown in the flowchart here below"
<!DOCTYPE html>
<html>
<head>
<style>
#flowchart {
display: none;
}
</style>
<script>
function toggleFlowchart() {
var x = document.getElementById("flowchart");
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}
</script>
</head>
<body>
<button onclick="toggleFlowchart()">Medications Flowchart</button>

<div id="flowchart" style="display: none;">

```mermaid
graph TD;
Expand Down Expand Up @@ -313,7 +343,8 @@ RegisterFinal--See figure-->End(END)
```

After registering a medication, it appears as a new record in the Medications tab. Also two new buttons appear, **EDIT** and **DELETE**, which allow respectively to modify and delete the data in a record (see Figure ).

</div>
</body></html>


### Diet Supplements
Expand Down
2 changes: 1 addition & 1 deletion content/en/docs/operating/registration/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: "Registration procedure"
lead: ""
date: 2023-03-11T12:28:30+01:00
lastmod: 2023-03-11T12:28:30+01:00
draft: false
draft: true
images: []
menu:
docs:
Expand Down