Page MenuHomec4science

patient.html
No OneTemporary

File Metadata

Created
Tue, Mar 4, 12:29

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>
</table>
</div>
</div>
<div class="col-xs-12 col-md-9 col-lg-10"><!-- col-md-pull-3"> -->
<ul class="nav nav-tabs">
{{#each tabs}}
<li role="presentation" class={{tabClasses}}>
<a href="" class="switchTab" data-id={{../_id}}>
{{title}}
</a>
</li>
{{/each}}
</ul>
<div id="studyPage">
{{> Template.dynamic template=template data=templateData}}
</div>
</div>
</div>
</div>
</template>

Event Timeline