2016-01-13 16:17:32 +01:00
|
|
|
<template name="lesionTrackerLayout">
|
2015-11-04 01:20:17 +01:00
|
|
|
<div class="logoContainer">
|
2016-02-15 14:36:01 +01:00
|
|
|
<div id="menu" class="row-fluid">
|
|
|
|
|
{{#if currentUser}}
|
|
|
|
|
<button type='button' class="btn btn-link dropdown-toggle" data-toggle="dropdown" id="userMenu">
|
|
|
|
|
{{fullName}} <span class="caret"></span>
|
|
|
|
|
</button>
|
|
|
|
|
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="userMenu">
|
2016-02-17 17:31:07 +01:00
|
|
|
{{#if showWorklistMenu}}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="worklist" id="worklist">
|
|
|
|
|
<i class="fa fa-list-ul"></i> Worklist
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
|
|
|
|
|
{{else}}
|
|
|
|
|
<li>
|
|
|
|
|
<!-- TODO: Move this elsewhere in the Worklist? -->
|
|
|
|
|
{{ >optionsButton }}
|
|
|
|
|
</li>
|
|
|
|
|
<li>
|
|
|
|
|
<a href="audit" id="audit">
|
|
|
|
|
<i class="fa fa-list-ul"></i> View Audit Log
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
{{/if}}
|
|
|
|
|
|
2016-02-15 14:36:01 +01:00
|
|
|
<li>
|
|
|
|
|
<a href="changePassword" id="changePassword">
|
|
|
|
|
<i class="fa fa-lock"></i> Change Password
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="divider"></li>
|
|
|
|
|
<li>
|
|
|
|
|
<a href="#" id="logoutButton">
|
|
|
|
|
<i class="fa fa-power-off"></i>Logout
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
{{/if}}
|
|
|
|
|
</div>
|
2015-11-06 15:23:24 +01:00
|
|
|
<a class="navbar-brand" href="http://ohif.org">
|
2015-11-04 01:20:17 +01:00
|
|
|
<img src="/images/logo.png">
|
|
|
|
|
<h4 class="name">Open Health Imaging Foundation</h4>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
2016-02-10 04:16:37 +01:00
|
|
|
{{> timeoutCountdownDialog}}
|
2016-01-13 16:17:32 +01:00
|
|
|
{{ >yield }}
|
2015-10-13 20:50:48 +02:00
|
|
|
</template>
|