src/main/webapp/WEB-INF/jsp/issue-form.jsp

changeset 156
c5d6820d884e
parent 146
b0e83cab0bde
child 168
1c3694ae224c
--- a/src/main/webapp/WEB-INF/jsp/issue-form.jsp	Sat Oct 31 09:56:00 2020 +0100
+++ b/src/main/webapp/WEB-INF/jsp/issue-form.jsp	Sat Oct 31 10:54:20 2020 +0100
@@ -67,11 +67,17 @@
         </tr>
         <tr>
             <th><fmt:message key="issue.created"/></th>
-            <td><fmt:formatDate value="${issue.created}" /></td>
+            <td>
+                <c:set var="dateValue" value="${issue.created}"/>
+                <%@include file="../jspf/date-with-tooltip.jspf"%>
+            </td>
         </tr>
         <tr>
             <th><fmt:message key="issue.updated"/></th>
-            <td><fmt:formatDate value="${issue.updated}" /></td>
+            <td>
+                <c:set var="dateValue" value="${issue.updated}"/>
+                <%@include file="../jspf/date-with-tooltip.jspf"%>
+            </td>
         </tr>
         <tr>
             <th><fmt:message key="issue.component"/></th>

mercurial