Repository: couchdb Updated Branches: refs/heads/Query-UI-Cleanup 855c27a58 -> 0e7c356c3
styling cleanup and adding placeholder text Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/0e7c356c Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/0e7c356c Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/0e7c356c Branch: refs/heads/Query-UI-Cleanup Commit: 0e7c356c35748cb8ce22aa94cc599d56badebf65 Parents: 855c27a Author: suelockwood <[email protected]> Authored: Thu Apr 17 15:01:47 2014 -0400 Committer: suelockwood <[email protected]> Committed: Thu Apr 17 15:01:47 2014 -0400 ---------------------------------------------------------------------- .../documents/templates/advanced_options.html | 28 +++++++++++--------- 1 file changed, 16 insertions(+), 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/0e7c356c/src/fauxton/app/addons/documents/templates/advanced_options.html ---------------------------------------------------------------------- diff --git a/src/fauxton/app/addons/documents/templates/advanced_options.html b/src/fauxton/app/addons/documents/templates/advanced_options.html index 1e5ac4f..f641e14 100644 --- a/src/fauxton/app/addons/documents/templates/advanced_options.html +++ b/src/fauxton/app/addons/documents/templates/advanced_options.html @@ -42,12 +42,14 @@ the License. <div class="span6"> <label for="endkey" class="drop-down">End key</label> <input id="endkey" name="endkey" type="text" placeholder='e.g., "1234"'> + <div class="controls controls-row checkbox inline"> + <input id="check5" name="inclusive_end" type="checkbox" value="true" checked disabled> + <label for="check5">Include End Key in results</label> + </div> </div> + </div> - <div class="controls controls-row checkbox inline"> - <input id="check5" name="inclusive_end" type="checkbox" value="false" disabled> - <label for="check5">Disable Inclusive End</label> - </div> + </div> </div> @@ -73,9 +75,8 @@ the License. </div> <div class="span6"> <label for="skipRows" class="inline drop-down"> - <input name="skip" class="input-small" type="text" id="skipRows"> # of rows to skip - + <input name="skip" class="input-small" type="text" id="skipRows" placeholder="0"> </label> </div> </div> @@ -90,17 +91,20 @@ the License. </label> </div> <div class="span6"> - <div class="checkbox inline"> - <input id="check6" name="update_seq" type="checkbox" value="true"> - <label for="check6">Update Sequence</label> - </div> + <label id="select2" class="drop-down inline"> + Docs: + <select id="select2" name="include_docs" class="input-medium"> + <option value="false">Exclude</option> + <option value="true">Include</option> + </select> + </label> </div> </div> <div class="row-fluid"> <div class="span6"> <div class="checkbox inline"> - <input id="check1" type="checkbox" name="include_docs" value="true"> - <label name="include_docs" for="check1">Include Docs <small>(show the entire doc body)</small></label> + <input id="check6" name="update_seq" type="checkbox" value="true"> + <label for="check6">Update Sequence</label> </div> </div> <div class="span6">
