theredphone/templates/er.tmpl

55 lines
1.5 KiB
Cheetah
Raw Permalink Normal View History

2024-04-07 11:44:55 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="MobileOptimized" content="320" />
<meta name="HandheldFriendly" content="true" />
<meta http-equiv="X-UA-Compatible" content="ie-edge">
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, width=device-width, user-scalable=no" />
<title>TheRedPhone.xyz -- ER Personnel</title>
<link rel="icon" type="image/x-icon" href="images/theredphone.ico" />
<link rel="stylesheet" type="text/css" href="styles/main.css" />
<link rel="stylesheet" type="text/css" href="styles/er.css" />
</head>
<body>
<div class="er__title">
<h1>TheRedPhone.xyz -- ER Personnel</h1>
</div>
<div class="alerts-wrapper">
<div class="alerts">
{{ range . }}
<div class="alert">
<h3>Categorization</h3>
<p>Categorization: {{ .MedicalOrTrauma }}</p>
<hr />
<h3>Patient Data</h3>
<p>Age: {{ .Age }}</p>
<p>Sex: {{ .Sex }}</p>
<p>NHS Number: {{ .NhsNumber }}</p>
<hr />
<h3>Observations</h3>
<p>Heart rate: {{ .HeartRate }}</p>
<p>Respiratory rate: {{ .RespiratoryRate }}</p>
<p>Oxygen Saturation: {{ .OxygenSaturation }}</p>
<p>GCS: {{ .Gcs }}</p>
<p>Blood pressure: {{ .BloodPressure }}</p>
<hr />
<h3>Extra Information</h3>
<p>Estimated Time of Arrival: {{ .Eta }}</p>
<p>Interventions given: {{ .Interventions }}</p>
<p>Background info: {{ .BackgroundInfo }}</p>
</div>
{{ end }}
</div>
</div>
</body>
</html>