Page MenuHomec4science

patient.html
No OneTemporary

File Metadata

Created
Wed, Jul 17, 07:56

patient.html

<template name="patient">
<div class="patient">
<br>
<div class="row">
<div class="col-xs-12 col-md-3 col-lg-2 profile"><!-- col-md-push-9 text-right"> -->
<div class="well">
<table class="table">
<tr>
<th>
<img src="{{identicon _id size=10 scale=10}}">
</th>
<td>
<p>
<b>{{id}}</b><br>
{{hrid}}
</p>
</td>
</tr>
<tr>
<th>Created at</th>
<td>{{fullDateTime createdAt}}</td>
</tr>
<tr>
<th>Study</th>
<td>{{study.title}}</td>
</tr>
<tr>
<th>Visits</th>
<td>{{numVisits}}</td>
</tr>
{{#if isExcluded}}
<tr>
<th class="text-danger">excluded</th>
<td class="text-danger">
yes <i class="fa fa-lg fa-info-circle" data-toggle="tooltip" data-placement="bottom" title="{{fullDateTime excludedAt}}: {{excludeReason}}"></i>
</td>
</tr>
{{/if}}
</table>
</div>
</div>
<div class="col-xs-12 col-md-9 col-lg-10"><!-- col-md-pull-3"> -->
<div id="studyPage">
{{> Template.dynamic template=template data=templateData}}
</div>
</div>
</div>
</div>
</template>

Event Timeline