appAddCommon.ftl 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <!--table-->
  2. <table width="960" class="datatable" >
  3. <tbody>
  4. <tr>
  5. <td colspan=4><@locale code="apps.basic.info"/></td>
  6. </tr>
  7. <tr>
  8. <th><@locale code="apps.id"/>:</th>
  9. <td>
  10. <span id="id_text" style="width:100%;font-weight: bold;">${model.id}</span>
  11. <input type="hidden" id="id" name="id" title="" value="${model.id}"/>
  12. </td>
  13. <th><@locale code="apps.secret"/>:</th>
  14. <td>
  15. <span id="secret_text" style="width:100%;font-weight: bold;">${model.secret}</span>
  16. <input type="hidden" id="secret" name="secret" title="" value="${model.secret}"/>
  17. </td>
  18. </tr>
  19. <tr>
  20. <th><@locale code="apps.name"/>:</th>
  21. <td colspan="3">
  22. <input type="text" id="name" name="name" size="100" title="" value=""/>
  23. <b class="orange">*</b><label for="name"></label>
  24. </td>
  25. </tr>
  26. <tr>
  27. <th><@locale code="apps.loginUrl"/>:</th>
  28. <td colspan="3">
  29. <input type="text" id="loginUrl" name="loginUrl" size="100" title="" value=""/>
  30. <b class="orange">*</b><label for="loginUrl"></label>
  31. </td>
  32. </tr>
  33. <tr>
  34. <th style="width:15%;"><@locale code="apps.protocol"/>:</th>
  35. <td style="width:35%;">
  36. <span id="protocol_text" >${model.protocol}</span>
  37. <input type="hidden" id="protocol" name="protocol" title="" value="${model.protocol}"/>
  38. </td>
  39. <th style="width:15%;"><@locale code="apps.category"/>:</th>
  40. <td style="width:35%;">
  41. <select name="category" class="select_t">
  42. <c:forEach items="${appCategorysList}" var="appCategory">
  43. <option value="${appCategory.id}">${appCategory.name}</option>
  44. </c:forEach>
  45. </select>
  46. </td>
  47. </tr>
  48. <tr>
  49. <th><@locale code="apps.icon"/>:</th>
  50. <td>
  51. <input type="file" id="iconFile" name="iconFile" title="" value=""/>
  52. <b class="orange">*</b><label for="iconFile"></label>
  53. </td>
  54. <th><@locale code="common.text.sortorder"/></th>
  55. <td>
  56. <input type="text" id="sortOrder" name="sortOrder" title="" value="0"/>
  57. <b class="orange">*</b><label for="sortOrder"></label>
  58. </td>
  59. </tr>
  60. <tr>
  61. <th><@locale code="apps.vendor"/>:</th>
  62. <td>
  63. <input type="text" id="vendor" name="vendor" title="" value=""/>
  64. <b class="orange">*</b><label for="vendor"></label>
  65. </td>
  66. <th><@locale code="apps.vendor.url"/>:</th>
  67. <td>
  68. <input type="text" id="vendorUrl" name="vendorUrl" title="" value=""/>
  69. <b class="orange">*</b><label for="vendorUrl"></label>
  70. </td>
  71. </tr>
  72. <tr>
  73. <th><@locale code="apps.visible"/></th>
  74. <td>
  75. <select id="visible" name="visible" >
  76. <option value="0" ><@locale code="apps.visible.hidden"/></option>
  77. <option value="1" selected><@locale code="apps.visible.all"/></option>
  78. <option value="2" ><@locale code="apps.visible.internet"/></option>
  79. <option value="3" ><@locale code="apps.visible.intranet"/></option>
  80. </select>
  81. </td>
  82. <th><@locale code="common.text.description"/>:</th>
  83. <td>
  84. <input type="text" id="description" name="description" title="" value=""/>
  85. <b class="orange">*</b><label for="description"></label>
  86. </td>
  87. </tr>
  88. </tbody>
  89. </table>