Sonny4Sonnix commited on
Commit
ba89136
1 Parent(s): a863fdb

Upload display_params.html

Browse files
Files changed (1) hide show
  1. display_params.html +35 -0
display_params.html ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!-- <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Display Parameters</title>
7
+ </head>
8
+ <body>
9
+ <h1>Display Parameters</h1>
10
+ <p>Item ID: {{ item_id }}</p>
11
+ <p>Query Parameter (q): {{ q }}</p>
12
+ </body>
13
+ </html> -->
14
+
15
+
16
+ <!DOCTYPE html>
17
+ <html lang="en">
18
+ <head>
19
+ <meta charset="UTF-8">
20
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
21
+ <title>Display Parameters</title>
22
+ </head>
23
+ <body>
24
+ <h1>Display Parameters</h1>
25
+ <p>PRG: Plasma glucose: {{ prg }}</p>
26
+ <p>PL: Blood Work Result-1 (mu U/ml): {{ pl }}</p>
27
+ <p>PR: Blood Pressure (mm Hg): {{ pr }}</p>
28
+ <p>SK: Blood Work Result-2 (mm): {{ sk }}</p>
29
+ <p>TS: Blood Work Result-3 (mu U/ml): {{ ts }}</p>
30
+ <p>M11: Body mass index (weight in kg/(height in m)^2): {{ m11 }}</p>
31
+ <p>BD2: Blood Work Result-4 (mu U/ml): {{ bd2 }}</p>
32
+ <p>Age: Patient's age (years): {{ age }}</p>
33
+ </body>
34
+ </html>
35
+