- Removed AssociatedStudies Collection - Measurement API is generated from configuration files - Data exchange methods are defined in configuration
44 lines
1.5 KiB
HTML
44 lines
1.5 KiB
HTML
<template name="longitudinalStudyListContextMenu">
|
|
{{#if uiSettings.studyListFunctionsEnabled}}
|
|
<div id="studyContextMenu" class="studyContextMenu noselect"
|
|
oncontextmenu='return false;'
|
|
unselectable='on'
|
|
onselectstart='return false;'>
|
|
<ul>
|
|
<li>
|
|
<a id="viewStudies" type="button"
|
|
title="View Studies">
|
|
View
|
|
</a>
|
|
<hr/>
|
|
<a id="launchStudyAssociation" type="button"
|
|
data-toggle="modal"
|
|
data-target="#associationModal"
|
|
title="Launch Study Association">
|
|
Associate
|
|
</a>
|
|
<a id="launchRemoveAssociation" type="button"
|
|
data-toggle="modal"
|
|
data-target="#confirmRemoveTimepointAssociation"
|
|
title="Remove Timepoint Association">
|
|
Remove Association
|
|
</a>
|
|
<hr/>
|
|
<a id="viewSeriesDetails" type="button"
|
|
title="View Series Details">
|
|
View Series Details
|
|
</a>
|
|
<a class="disabled">Anonymize</a>
|
|
<a class="disabled">Send</a>
|
|
<hr/>
|
|
<a id="exportSelectedStudies"
|
|
title="Export Selected Studies">
|
|
Export
|
|
</a>
|
|
<a class="disabled">Delete</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
{{/if}}
|
|
</template>
|