diff options
Diffstat (limited to 'src/fauxton/app/templates/documents/tabs.html')
-rw-r--r-- | src/fauxton/app/templates/documents/tabs.html | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/fauxton/app/templates/documents/tabs.html b/src/fauxton/app/templates/documents/tabs.html new file mode 100644 index 000000000..57e6cb180 --- /dev/null +++ b/src/fauxton/app/templates/documents/tabs.html @@ -0,0 +1,39 @@ +<!-- +Licensed under the Apache License, Version 2.0 (the "License"); you may not +use this file except in compliance with the License. You may obtain a copy of +the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +License for the specific language governing permissions and limitations under +the License. +--> + +<ul class="nav nav-tabs"> + <li class="active"><a href="<%= db_url %>">Docs</a></li> + <!-- TODO::REENABLE + <li><a href="#">Permissions</a></li> + <li><a href="#">Stats</a></li> + --> + <li id="changes"><a href="<%= changes_url %>">Changes</a></li> + <!-- TODO::REENABLE + <div id="search" class="navbar-search span4 nav pull-right input-prepend" style="height:20px;"></div> + <!-- TODO: put this styling into less --//> + <ul class="nav pull-right" style="margin:5px 10px 0px 10px;"> + <li> + <div class="btn-group"> + <a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#"> + <i class="icon icon-cog"></i> Database actions <span class="caret"></span> + </a> + <ul class="dropdown-menu"> + <li><a class=""><i class="icon-repeat"></i> Replicate database</a></li> + <li><a id="delete-database" class=""><i class="icon-trash"></i> Delete database</a></li> + </ul> + </div> + </li> + </ul> + --> +</ul> |