log_detail.jsp 3.3 KB

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