1
0
Fork 0
arangodb/html/admin/js/templates/collectionView.ejs

56 lines
2.2 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.

<div id="change-collection" 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>
<h3>Modify Collection</h3>
</div>
<div class="modal-body">
<table>
<tr>
<th class="collectionTh">Name:</th>
<th class="collectionTh"><input type="text" id="change-collection-name" name="name" value=""/></th>
</tr>
<tr id="collectionSizeBox" style="display:none">
<th class="collectionTh">Journal size:</th>
<th class="collectionTh"><input type="text" id="change-collection-size" name="size" value=""/></th>
<th><a class="modalTooltips" title="The maximal size of a journal or datafile. Must be at least 1(MB)."><i class="icon-info-sign"></i></a></th>
</tr>
<tr id="collectionSyncBox" style="display:none">
<th class="collectionTh">Sync:</th>
<th class="collectionTh">
<select id="change-collection-sync">
<option value="false">No</option>
<option value="true">Yes</option>
</select>
</th>
<th><a class="modalTooltips" title="Synchronised to disk before returning from a create or update of an document."><i class="icon-info-sign"></i></a></th>
</tr>
<tr>
<th class="collectionTh">ID:</th>
<th class="collectionTh">
<div id="change-collection-id" class="modal-text"/>
<th>
</tr>
<tr>
<th class="collectionTh">Type:</th>
<th class="collectionTh">
<div id="change-collection-type" class="modal-text"/>
</th>
</tr>
<tr>
<th class="collectionTh">Status:</th>
<th class="collectionTh">
<div id="change-collection-status" class="modal-text"/>
</th>
</tr>
</table>
</div>
<div id="colFooter" class="modal-footer">
<button id="delete-modified-collection" class="btn btn-danger pull-left">Delete</button>
<button id="save-modified-collection" class="btn btn-success pull-right" style="margin-right:8px">Save</button>
</div>
</div>