1
0
Fork 0
arangodb/js/apps/system/aardvark/frontend/js/templates/foxxMountView.ejs

42 lines
1.5 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script id="foxxMountView.ejs" type="text/template">
<div id="install-foxx" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" style="display:none">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<a class="arangoHeader">Install Application</a>
</div>
<div class="modal-body">
<table>
<tr>
<th class="collectionTh">Name:</th>
<th class="collectionTh"><strong><%=attributes.name %></strong></th>
</tr>
<tr>
<th class="collectionTh">&nbsp;</th>
<th class="collectionTh">&nbsp;</th>
</tr>
<tr>
<th class="collectionTh">Mount:</th>
<th class="collectionTh"><input type="text" id="mount-point" name="mountpoint" value="" placeholder="mount-path"/></th>
<th><a class="modalTooltips" title="The path where the app can be reached."><i class="arangoicon icon_arangodb_info"></i></a></th>
</tr>
<tr>
<th class="collectionTh">Version:</th>
<th class="collectionTh">
<%=attributes.version %>
<th>
</tr>
<tr>
<th class="collectionTh">System:</th>
<th class="collectionTh">
<%=attributes.isSystem ? "Yes" : "No" %>
<th>
</tr>
</table>
</div>
<div id="colFooter" class="modal-footer">
<button id="cancel" class="btn btn-danger pull-left">Cancel</button>
<button class="btn btn-success pull-right installFoxx">Install</button>
</div>
</div>
</script>