| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 | <!-- * 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.--><div class="page-title clearfix">    <div class="fontLoader">        <i class="fa fa-refresh fa-spin-custom"></i>    </div>    <div data-id="details" class="clearfix form-horizontal col-sm-12">        <h1 class="row title"><span data-id="title"></span></h1>        <button type="button" data-id="editButton" class="btn btn-sm btn-action pull-right"><i class="fa fa-pencil"></i></button>        <div class="form-group clearfix">            <span class="pull-left text-muted">简述: </span>            <div class="pull-left">                <p data-id="shortDescription"></p>            </div>        </div>        <div class="form-group clearfix">            <span class="pull-left text-muted">详细描述: </span>            <div>                <textarea class="form-control long-description" name="longDescription" data-id="longDescription" disabled></textarea>            </div>        </div>        {{#if isTermView}}        <div class="form-group clearfix">            <span class="control-label-sm-pr pull-left">数据模型:</span>            <div class="pull-left" data-id="tagListTerm">                <button class="btn btn-action btn-sm" title="添加数据模型" data-id="addTagTerm">                    <i class="fa fa-plus"> </i>                </button>            </div>        </div>        <div class="form-group clearfix">            <span class="control-label-sm-pr pull-left">类别:</span>            <div class="pull-left" data-id="categoryList">                <button class="btn btn-action btn-sm" title="添加类别" data-id="addCategory">                    <i class="fa fa-plus"> </i>                </button>            </div>        </div>        {{/if}} {{#if isCategoryView}}        <div class="form-group clearfix">            <span class="control-label-sm-pr pull-left">术语:</span>            <div class="pull-left" data-id="termList">                <button class="btn btn-action btn-sm" title="添加术语" data-id="addTerm">                    <i class="fa fa-plus"> </i>                </button>            </div>        </div>        {{/if}} {{#if isTermView}}        <div class="row">            <div class="col-sm-12 default-tab">                <ul class="nav nav-tabs" data-id="tab-list">                    <li role="entities" class="tab active"><a href="#tab-entities" aria-controls="tab-entities" role="tab" data-toggle="tab">实体</a></li>                    <li role="classification"><a href="#tab-tagTable" aria-controls="tab-tagTable" role="tab" data-toggle="tab">数据模型</a></li>                    <li role="relatedTerm"><a href="#tab-relatedTerm" aria-controls="tab-relatedTerm" role="tab" data-toggle="tab">关联术语</a></li>                </ul>            </div>        </div>        {{/if}}    </div></div>{{#if isTermView}}<div class="tab-content">    <div id="tab-entities" role="entities" class="tab-pane active animated fadeIn">        <div id="r_searchResultLayoutView">            <div class="fontLoader-relative">                <i class="fa fa-refresh fa-spin-custom"></i>            </div>        </div>    </div>    <div id="tab-tagTable" role="classification" class="tab-pane animated fadeIn">        <div id="r_tagTableLayoutView">            <div class="fontLoader-relative">                <i class="fa fa-refresh fa-spin-custom"></i>            </div>        </div>    </div>    <div id="tab-relatedTerm" role="relatedTerm" class="tab-pane animated fadeIn">        <div id="r_relationLayoutView">            <div class="fontLoader-relative">                <i class="fa fa-refresh fa-spin-custom"></i>            </div>        </div>    </div></div>{{/if}}
 |