<!-- <!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Display Parameters</title> | |
</head> | |
<body> | |
<h1>Display Parameters</h1> | |
<p>Item ID: {{ item_id }}</p> | |
<p>Query Parameter (q): {{ q }}</p> | |
</body> | |
</html> --> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Display Parameters</title> | |
</head> | |
<body> | |
<h1>Display Parameters</h1> | |
<p>PRG: Plasma glucose: {{ prg }}</p> | |
<p>PL: Blood Work Result-1 (mu U/ml): {{ pl }}</p> | |
<p>PR: Blood Pressure (mm Hg): {{ pr }}</p> | |
<p>SK: Blood Work Result-2 (mm): {{ sk }}</p> | |
<p>TS: Blood Work Result-3 (mu U/ml): {{ ts }}</p> | |
<p>M11: Body mass index (weight in kg/(height in m)^2): {{ m11 }}</p> | |
<p>BD2: Blood Work Result-4 (mu U/ml): {{ bd2 }}</p> | |
<p>Age: Patient's age (years): {{ age }}</p> | |
</body> | |
</html> | |