mirror of https://gitee.com/bigwinds/arangodb
41 lines
1.4 KiB
Plaintext
41 lines
1.4 KiB
Plaintext
<div id="add-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>New Collection</h3>
|
||
</div>
|
||
<div class="modal-body">
|
||
<table>
|
||
<tr>
|
||
<th class="collectionTh">Name:</th>
|
||
<th><input type="text" id="new-collection-name" name="name" value=""/></th>
|
||
</tr>
|
||
<tr>
|
||
<th class="collectionTh">Size:</th>
|
||
<th><input type="text" id="new-collection-size" name="size" value=""/></th>
|
||
</tr>
|
||
<tr>
|
||
<th class="collectionTh">Sync:</th>
|
||
<th>
|
||
<select id="new-collection-sync">
|
||
<option value="false">No</option>
|
||
<option value="true">Yes</option>
|
||
</select>
|
||
</th>
|
||
</tr>
|
||
<tr>
|
||
<th class="collectionTh">Type:</th>
|
||
<th>
|
||
<select id="new-collection-type">
|
||
<option value="3">Document</option>
|
||
<option value="2">Edge</option>
|
||
</select>
|
||
</th>
|
||
</tr>
|
||
</table>
|
||
</div>
|
||
<div class="modal-footer">
|
||
<button class="btn" data-dismiss="modal" aria-hidden="true">Abort</button>
|
||
<button id="save-new-collection" class="btn btn-primary">Create Collection</button>
|
||
</div>
|
||
</div>
|