mirror of https://gitee.com/bigwinds/arangodb
42 lines
1.5 KiB
Plaintext
42 lines
1.5 KiB
Plaintext
<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"> </th>
|
||
<th class="collectionTh"> </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>
|