print patient information in table view.

This commit is contained in:
Jason Kulatunga 2022-09-12 23:18:32 -04:00
parent 66a69ef97a
commit 5f0bef3ccc
1 changed files with 10 additions and 46 deletions

View File

@ -146,56 +146,20 @@
<table class="table">
<thead>
<tr>
<th class="wd-5p">&nbsp;</th>
<th class="wd-45p">Country</th>
<th>Entrances</th>
<th>Bounce Rate</th>
<th>Exits</th>
<th class="wd-45p">Name</th>
<th>Source</th>
<th>Identifier</th>
<th>Last Updated</th>
</tr>
</thead>
<tbody>
<tr>
<td><i class="flag-icon flag-icon-us flag-icon-squared"></i></td>
<td><strong>United States</strong></td>
<td><strong>134</strong> (1.51%)</td>
<td>33.58%</td>
<td>15.47%</td>
</tr>
<tr>
<td><i class="flag-icon flag-icon-gb flag-icon-squared"></i></td>
<td><strong>United Kingdom</strong></td>
<td><strong>290</strong> (3.30%)</td>
<td>9.22%</td>
<td>7.99%</td>
</tr>
<tr>
<td><i class="flag-icon flag-icon-in flag-icon-squared"></i></td>
<td><strong>India</strong></td>
<td><strong>250</strong> (3.00%)</td>
<td>20.75%</td>
<td>2.40%</td>
</tr>
<tr>
<td><i class="flag-icon flag-icon-ca flag-icon-squared"></i></td>
<td><strong>Canada</strong></td>
<td><strong>216</strong> (2.79%)</td>
<td>32.07%</td>
<td>15.09%</td>
</tr>
<tr>
<td><i class="flag-icon flag-icon-fr flag-icon-squared"></i></td>
<td><strong>France</strong></td>
<td><strong>216</strong> (2.79%)</td>
<td>32.07%</td>
<td>15.09%</td>
</tr>
<tr>
<td><i class="flag-icon flag-icon-ph flag-icon-squared"></i></td>
<td><strong>Philippines</strong></td>
<td><strong>197</strong> (2.12%)</td>
<td>32.07%</td>
<td>15.09%</td>
<tr *ngFor="let patient of patients">
<td><strong>{{patient.user_id}}</strong></td>
<td><strong>{{patient.source_id}}</strong></td>
<td>{{patient.source_resource_id}}</td>
<td>{{patient.UpdatedAt | date}}</td>
</tr>
</tbody>
</table>
</div><!-- table-responsive -->