PropagationPropertyModalView_tmpl.html 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <!--
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. -->
  17. <div class="lineage-edge-details" data-id="PropagationToolTip">
  18. <div class="col-sm-12">
  19. <div class="row">
  20. <div class="col-sm-9" style="margin-top: 5px;">
  21. <span class="pull-left">使用传播/禁用传播</span>
  22. <label class="switch pull-left">
  23. <input type="checkbox" class="switch-input" name="editPropagationType" value="text">
  24. <span class="switch-slider"></span>
  25. </label>
  26. <span class="pull-left">选择分类以停止传播</span>
  27. </div>
  28. </div>
  29. <hr style="margin-top: 0px;">
  30. </div>
  31. <div class="editPropagation col-sm-12">
  32. <h4 class="title"><span data-id="edgeDetailName"></span></h4>
  33. <div class="overlay show">
  34. <div class="fontLoader show">
  35. <i class="fa fa-refresh fa-spin-custom"></i>
  36. </div>
  37. </div>
  38. <div class="col-md-12">
  39. <ul data-id="propagationOptions" class="propagation-list">
  40. <li>
  41. <div class="radio">
  42. <input type="radio" name="propagateRelation" value="ONE_TO_TWO" id="ONE_TO_TWO">
  43. <label class="padding-left-0" for="ONE_TO_TWO">
  44. <span class="fromName"></span>
  45. <i class="fa-color fa fa-long-arrow-right"></i>
  46. <span class="toName"></span>
  47. </label>
  48. </div>
  49. </li>
  50. <li class="TWO_TO_ONE" style="display: none">
  51. <div class="radio">
  52. <input type="radio" name="propagateRelation" value="TWO_TO_ONE" id="TWO_TO_ONE">
  53. <label class="padding-left-0" for="TWO_TO_ONE">
  54. <span class="fromName"></span>
  55. <i class="fa-color fa fa-long-arrow-left"></i>
  56. <span class="toName"></span>
  57. </label>
  58. </div>
  59. </li>
  60. <li class="both" style="display: none">
  61. <div class="radio">
  62. <input type="radio" name="propagateRelation" value="BOTH" id="BOTH">
  63. <label class="padding-left-0" for="BOTH">
  64. <span class="fromName"></span>
  65. <i class="fa-color fa fa-arrows-h"></i>
  66. <span class="toName"></span>
  67. </label>
  68. </div>
  69. </li>
  70. <li>
  71. <div class="radio">
  72. <input type="radio" name="propagateRelation" value="NONE" id="NONE">
  73. <label class="padding-left-0" for="NONE">None</label>
  74. </div>
  75. </li>
  76. </ul>
  77. </div>
  78. </div>
  79. <div data-id="PropagatedClassificationTable" class="propagatedClassificationTable col-sm-12" style="display: none"></div>
  80. </div>