attribute_detail.jsp 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <%@ include file="../common/header.jsp"%>
  2. <script type="text/javascript" language="javascript">
  3. <!--
  4. function doBack(){
  5. document.forms.attribute.action.value="list";
  6. document.forms.attribute.submit();
  7. }
  8. function doEdit(id){
  9. document.forms.attribute.id.value=id;
  10. document.forms.attribute.action.value="edit";
  11. document.forms.attribute.submit();
  12. }
  13. -->
  14. </script>
  15. <!-- CONTENT -->
  16. <form name="attribute" method="post" action="attribute.do">
  17. <input type="hidden" name="action" value =""/>
  18. <input type="hidden" name="id" 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.attribute.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="attribute.id.key"/></b></td>
  31. <td width="1%">:</td>
  32. <td align="left" width="84%" colspan="4">
  33. <bean:write name="attribute" property="id"/>
  34. </td>
  35. </tr>
  36. <tr align = "left">
  37. <td width="15%"><b><bean:message key="attribute.name.key"/></b></td>
  38. <td width="1%">:</td>
  39. <td align="left" width="84%" colspan="4">
  40. <bean:write name="attribute" property="name"/>
  41. </td>
  42. </tr>
  43. <tr align = "left">
  44. <td width="15%"><b><bean:message key="attribute.type.key"/></b></td>
  45. <td width="1%">:</td>
  46. <td align="left" width="84%" colspan="4">
  47. <bean:write name="attribute" property="type"/>
  48. </td>
  49. </tr>
  50. <tr align = "left">
  51. <td width="15%"><b><bean:message key="attribute.description.key"/></b></td>
  52. <td width="1%">:</td>
  53. <td align="left" width="84%" colspan="4">
  54. <bean:write name="attribute" property="description"/>
  55. </td>
  56. </tr>
  57. <tr align = "left">
  58. <td width="15%"><b><bean:message key="attribute.modifiedBy.key"/></b></td>
  59. <td width="1%">:</td>
  60. <td align="left" width="84%" colspan="4">
  61. <bean:write name="attribute" property="modifiedBy"/>
  62. </td>
  63. </tr>
  64. <tr align = "left">
  65. <td width="15%"><b><bean:message key="attribute.timestamp.key"/></b></td>
  66. <td width="1%">:</td>
  67. <td align="left" width="84%" colspan="4">
  68. <bean:write name="attribute" property="timestamp.time" format="dd/MM/yyyy HH:mm:ss"/>
  69. </td>
  70. </tr>
  71. <tr>
  72. <td>&nbsp;</td>
  73. <td>&nbsp;</td>
  74. <td>&nbsp;</td>
  75. <td>&nbsp;</td>
  76. <td>&nbsp;</td>
  77. <td>&nbsp;</td>
  78. </tr>
  79. <tr>
  80. <td>&nbsp;</td>
  81. <td>&nbsp;</td>
  82. <td>
  83. <input type="button" value=<bean:message key="button.back" /> onclick="doBack();"/>
  84. </td>
  85. <td>&nbsp;</td>
  86. <td>&nbsp;</td>
  87. <td>&nbsp;</td>
  88. </tr>
  89. </table>
  90. </td>
  91. </tr>
  92. <tr>
  93. <td>&nbsp;</td>
  94. </tr>
  95. </table>
  96. </td>
  97. </form>
  98. <!-- END CONTENT -->
  99. <%@ include file="../common/footer.jsp"%>