EntityDetailTableLayoutView_tmpl.html 2.21 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<!--
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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.
-->
17 18 19 20 21 22 23 24 25 26 27
<div class="panel-group" id="accordion">
    <div class="panel panel-default custom-panel expand_collapse_panel-icon" data-id="entity">
        <div class="panel-heading" data-toggle="collapse" href="#collapse1" aria-expanded="true" style="width: 58%">
            <h4 class="panel-title">
                <a>Technical properties </a>
            </h4>
            <div class="btn-group pull-left">
                <button type="button" title="Collapse"><i class="ec-icon fa"></i></button>
            </div>
        </div>
        <div class="panel-actions">
28
            <div class="pretty p-switch p-fill" style="margin-right: 20px">
29
                <input type="checkbox" data-id="noValueToggle" title="Show empty values" />
30
                <div class="state p-primary">
31
                    <label></label>
32 33
                </div>
            </div>
34
            {{#ifCond editEntity "===" true}}
35
            <button data-id="editButton" title="Edit Entity" class="btn btn-action btn-sm pull-right">Edit</button>
36
            {{/ifCond}}
37 38 39
        </div>
        <div id="collapse1" class="panel-collapse collapse in">
            <div class="panel-body">
40 41 42 43 44 45
                <div class="entity-detail-table">
                    <table class="table">
                        <tbody data-id="detailValue" class="hide-empty-value">
                        </tbody>
                    </table>
                </div>
46 47 48
            </div>
        </div>
    </div>
49
</div>