consumerportal
Version:
mydna Custimised for you
63 lines (58 loc) • 2.21 kB
HTML
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-69139205-6', 'auto');
ga('set', {
page: '/results/profile.html',
title: 'My Profile'
});
ga('send', 'pageview');
</script>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class='content_block content_blocks_padding'>
<h1>My Genetic Results</h1>
<div class="your_results_left">
<p>Your unique genetic results determine how your body responds to certain medications.</p>
<p>People vary in how slow or fast they process medications. This explains why certain medications may cause side-effects in some people and may not work for others.</p>
<p>The table below explains how your genes work and how it may impact your response to certain medications.</p>
</div>
<div class="table-responsive">
<div ng-if="!vm.genoLoaded">
<div>Loading My Genetic Results...</div>
</div>
<table class="table table-striped" ng-if="vm.genoLoaded">
<thead>
<tr>
<th width="25%">Test</th>
<th width="25%">Result</th>
<th width="50%">Explanation</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="val in vm.PatientGenoTypes">
<td data-th="Gene">{{val.Gene}}</td>
<td data-th="Predicted Function">
<div class="results_traffic_light {{val.Color}}">
{{val.ShortPhenotype}}
</div>
</td>
<td data-th="Interpretation">{{val.LongDescription}}</td>
</tr>
</tbody>
</table>
</div>
<div class="your_results_left" ng-if="vm.PatientGenoTypes.length<=0">
<p>Your Genetic Results are not yet available.</p>
</div>
<div class="disclaimer_text">
<p ng-bind-html="$sce.trustAsHtml(vm.Disclaimer)"></p>
</div>
<div style="clear:both;"></div>
</div>
</div>
</div>
</div>