summaryrefslogtreecommitdiff
path: root/src/fauxton/app/templates/documents/doc_field_editor_tabs.html
blob: fcc2b53e6c2e52db9d4ad8cbd9cbbe28359b626a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!--
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 id="field_editor" class="<%= isSelectedClass('field_editor') %>"><a href="#<%= doc.url('app') %>/field_editor">Doc fields</a></li>
  <li id="code_editor" class="<%= isSelectedClass('code_editor') %>"><a href="#<%= doc.url('app') %>/code_editor"><i class="icon-pencil"></i> Code editor</a></li>
  <ul class="nav pull-right" style="margin:5px 10px 0px 10px;">
    <li>
      <div class="btn-group">
        <button class="btn btn-small upload"><i class="icon-circle-arrow-up"></i> Upload Attachment</button>
        <button class="btn btn-small duplicate"><i class="icon-repeat"></i> Duplicate document</button>
        <button class="btn btn-small delete"><i class="icon-trash"></i> Delete document</button>
      </div>
    </li>
  </ul>
</ul>

<div id="upload-modal"> </div>
<div id="duplicate-modal"> </div>