epay_role_detail.jsp 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <%@ include file="../common/header.jsp"%>
  2. <script type="text/javascript" language="javascript">
  3. <!--
  4. function doBack(){
  5. document.forms.epayRole.action.value="list";
  6. document.forms.epayRole.submit();
  7. }
  8. function doEdit(code){
  9. document.forms.epayRole.code.value=code;
  10. document.forms.epayRole.action.value="edit";
  11. document.forms.epayRole.submit();
  12. }
  13. -->
  14. </script>
  15. <!-- CONTENT -->
  16. <form name="epayRole" method="post" action="epayRole.do">
  17. <input type="hidden" name="action" value =""/>
  18. <input type="hidden" name="code" value =""/>
  19. <!--td width="80%" valign="top"-->
  20. <table width="100%" border="0" align="center" cellpadding="2" cellspacing="4">
  21. <tr>
  22. <td class="titleHeader"><bean:message key="project.role.key"/> - DETAIL</td>
  23. </tr>
  24. </table>
  25. <table width="100%" border="0" align="center" cellpadding="2" cellspacing="4">
  26. <tr>
  27. <td align="center">
  28. <table width="100%" border="0" cellspacing="1" cellpadding="2">
  29. <tr align="left">
  30. <td width="15%"><b><bean:message key="role.id.key"/></b></td>
  31. <td width="1%">:</td>
  32. <td width="34%">
  33. <bean:write name="nhrole" property="code"/>
  34. </td>
  35. <td width="5%">&nbsp;</td>
  36. <td width="15%">&nbsp;</td>
  37. <td width="30%">&nbsp;</td>
  38. </tr>
  39. <tr align="left">
  40. <td width="15%"><b><bean:message key="role.name.key"/></b></td>
  41. <td width="1%">:</td>
  42. <td align="left" width="34%">
  43. <bean:write name="nhrole" property="name"/>
  44. </td>
  45. <td width="5%">&nbsp;</td>
  46. <td width="15%">&nbsp;</td>
  47. <td width="30%">&nbsp;</td>
  48. </tr>
  49. <tr align ="left">
  50. <td valign="top" width="15%"><b><bean:message key="role.privilege.key"/></b></td>
  51. <td valign="top" width="1%">:</td>
  52. <td align="left" width="84%" colspan="4">
  53. <logic:notEmpty name="nhrole" property="nhprivileges">
  54. <logic:iterate id="element_privileges" name="nhrole" property="nhprivileges">
  55. <bean:write name="element_privileges" property="name"/>
  56. <br>
  57. </logic:iterate>
  58. </logic:notEmpty>
  59. </td>
  60. </tr>
  61. <tr align ="left">
  62. <td width="15%"><b><bean:message key="role.status.key"/></b></td>
  63. <td width="1%">:</td>
  64. <td align="left" width="34%">
  65. <bean:write name="nhrole" property="status"/>
  66. </td>
  67. <td width="5%">&nbsp;</td>
  68. <td width="15%">&nbsp;</td>
  69. <td width="30%">&nbsp;</td>
  70. </tr>
  71. <tr align="left">
  72. <td width="15%"><b><bean:message key="role.modifiedBy.key"/></b></td>
  73. <td width="1%">:</td>
  74. <td align="left" width="34%">
  75. <bean:write name="nhrole" property="modifiedBy"/>
  76. </td>
  77. <td width="15%">&nbsp;</td>
  78. <td width="15%">&nbsp;</td>
  79. <td width="30%">&nbsp;</td>
  80. </tr>
  81. <tr align="left">
  82. <td width="15%"><b><bean:message key="role.timestamp.key"/></b></td>
  83. <td width="1%">:</td>
  84. <td align="left" width="34%">
  85. <logic:notEmpty name="nhrole" property="modifiedDate">
  86. <bean:write name="nhrole" property="modifiedDate.time" format="dd/MM/yyyy hh:mm:ss:SSS"/>
  87. </logic:notEmpty>
  88. </td>
  89. <td width="5%">&nbsp;</td>
  90. <td width="15%">&nbsp;</td>
  91. <td width="30%">&nbsp;</td>
  92. </tr>
  93. <tr>
  94. <td>&nbsp;</td>
  95. <td>&nbsp;</td>
  96. <td>&nbsp;</td>
  97. <td>&nbsp;</td>
  98. <td>&nbsp;</td>
  99. <td>&nbsp;</td>
  100. </tr>
  101. <tr>
  102. <td>&nbsp;</td>
  103. <td>&nbsp;</td>
  104. <td>
  105. <input type="button" value=<bean:message key="button.back" /> onclick="doBack();" value="Back" />
  106. <%/*<input type="button" value=<bean:message key="button.edit" /> onclick="doEdit('<bean:write name="modifiedDate" property="code"/>');" />*/%>
  107. </td>
  108. <td>&nbsp;</td>
  109. <td>&nbsp;</td>
  110. <td>&nbsp;</td>
  111. </tr>
  112. <tr>
  113. <td>&nbsp;</td>
  114. <td>&nbsp;</td>
  115. <td>&nbsp;</td>
  116. <td>&nbsp;</td>
  117. <td>&nbsp;</td>
  118. <td>&nbsp;</td>
  119. </tr>
  120. </table>
  121. </td>
  122. </tr>
  123. <tr>
  124. <td>&nbsp;</td>
  125. </tr>
  126. </table>
  127. </td>
  128. </form>
  129. <!-- END CONTENT -->
  130. <%@ include file="../common/footer.jsp"%>