Skip to content

Commit

Permalink
Add example report.
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian de Ruiter committed Apr 25, 2024
1 parent 33d2f5f commit f0481e7
Show file tree
Hide file tree
Showing 2 changed files with 98 additions and 158 deletions.
98 changes: 98 additions & 0 deletions example-report.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<title>Materialize CSS Example</title>
</head>
<body>
<nav>
<div class="nav-wrapper blue">
<a href="#" class="brand-logo" style="margin-left: 15%">Patient report</a>
<!-- <ul id="nav-mobile" class="right hide-on-med-and-down">
<li><a href="sass.html">Sass</a></li>
<li><a href="badges.html">Components</a></li>
<li><a href="collapsible.html">Javascript</a></li>
</ul> -->
</div>
</nav>

<div class="container">
<h5>Personal details</h5>
<table class="highlight">
<tbody>
<tr>
<th width="30%">Name</th>
<td>Emmy</td>
</tr>
<tr>
<th>Age</th>
<td>8</td>
</tr>
<tr>
<th>Admitted on</th>
<td>...</td>
</tr>
</tbody>
</table>
<br/>
<h5>Assessment scores</h5>
<h6>Physical well-being</h5>
<table class="highlight">
<thead>
<tr>
<th width="70%">Criteria</th>
<th>Score</th>
</tr>
</thead>
<tbody>
<tr>
<td>Lack of energy</td>
<td>0 (not at all)</td>
</tr>
<tr>
<td>Nausea</td>
<td>4 (very much)</td>
</tr>
<tr>
<td>Pain</td>
<td>3 (quite a bit)</td>
</tr>
<tr>
<td>Side effects of treatment</td>
<td>0 (not at all)</td>
</tr>
</tbody>
</table>
<br />
<h6>Social/family well-being</h5>
<table class="highlight">
<thead>
<tr>
<th width="70%">Criteria</th>
<th>Score</th>
</tr>
</thead>
<tbody>
<tr>
<td>I feel close to my friends </td>
<td>4 (very much)</td>
</tr>
<tr>
<td>I get emotional support from my family</td>
<td>3 (quite a bit)</td>
</tr>
<tr>
<td>I get support from my friends</td>
<td>unknown</td>
</tr>
</tbody>
</table>
</div>

<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
</body>
</html>
158 changes: 0 additions & 158 deletions requirements.txt

This file was deleted.

0 comments on commit f0481e7

Please sign in to comment.