ohif-viewer/Packages/ohif-lesiontracker/client/components/dialog/nonTargetMeasurement.html

17 lines
666 B
HTML
Raw Normal View History

<template name="dialogNonTargetMeasurement">
2016-11-14 23:30:38 +01:00
{{#dialogForm (extend this
dialogClass='modal-sm'
schema=(choose this.schema instance.schema)
api=instance.api
)}}
{{>inputSelect labelClass='form-group' key='location' hideSearch=true
options=(clone placeholder='Choose a lesion location')}}
{{>inputSelect labelClass='form-group' key='response' hideSearch=true
options=(clone placeholder='Choose a lesion location response')}}
2016-11-14 23:30:38 +01:00
{{#if this.edit}}
<hr>
{{#button class='btn btn-danger' action='remove'}}Remove{{/button}}
{{/if}}
{{/dialogForm}}
</template>