add 'updated' to issues table

Sat, 04 Jun 2022 18:47:06 +0200

author
Mike Becker <universe@uap-core.de>
date
Sat, 04 Jun 2022 18:47:06 +0200
changeset 251
7ea0f266da41
parent 250
ce6d539bb970
child 252
90f5e12c7623

add 'updated' to issues table

src/main/webapp/WEB-INF/changelogs/changelog-de.jspf file | annotate | diff | comparison | revisions
src/main/webapp/WEB-INF/changelogs/changelog.jspf file | annotate | diff | comparison | revisions
src/main/webapp/WEB-INF/jspf/issue-list.jspf file | annotate | diff | comparison | revisions
--- a/src/main/webapp/WEB-INF/changelogs/changelog-de.jspf	Sat Jun 04 18:35:45 2022 +0200
+++ b/src/main/webapp/WEB-INF/changelogs/changelog-de.jspf	Sat Jun 04 18:47:06 2022 +0200
@@ -33,6 +33,7 @@
     <li>Datum der Veröffentlichung und des Supportendes zu Versionen hinzugefügt.</li>
     <li>Gesamtanzahl der Kommentare wird nun angezeigt.</li>
     <li>Spalte für zugewiesener Entwickler zu den Vorgangstabellen hinzugefügt.</li>
+    <li>Spalte für den Zeitpunkt der letzten Aktualisierung zu den Vorgangstabellen hinzugefügt.</li>
     <li>E-Mail Link in Vorgangsansicht hinzugefügt, wenn der Zugewiesene eine Mailadresse hat.</li>
     <li>Formatierung für Status-Icons hinzugefügt, die als Text eingegeben werden: (/), (x) sowie (!)</li>
     <li>Installationsanweisungen hinzugefügt.</li>
--- a/src/main/webapp/WEB-INF/changelogs/changelog.jspf	Sat Jun 04 18:35:45 2022 +0200
+++ b/src/main/webapp/WEB-INF/changelogs/changelog.jspf	Sat Jun 04 18:47:06 2022 +0200
@@ -33,6 +33,7 @@
     <li>Add release and end of life dates to versions.</li>
     <li>Add the total number of comments to the caption.</li>
     <li>Add assignee to the issue overview tables.</li>
+    <li>Add updated timestamp to the issue overview tables.</li>
     <li>Add mailto link in issue view when the assignee has a mail address.</li>
     <li>Add formatting for (/), (x), and (!) status indicators.</li>
     <li>Add install instructions.</li>
--- a/src/main/webapp/WEB-INF/jspf/issue-list.jspf	Sat Jun 04 18:35:45 2022 +0200
+++ b/src/main/webapp/WEB-INF/jspf/issue-list.jspf	Sat Jun 04 18:47:06 2022 +0200
@@ -8,11 +8,13 @@
         <col style="width: auto" />
         <col style="width: 10%" />
         <col style="width: 10%" />
+        <col style="width: 10%" />
     </colgroup>
     <thead>
         <tr>
             <th><fmt:message key="issue.subject"/></th>
             <th><fmt:message key="issue.eta"/></th>
+            <th><fmt:message key="issue.updated"/></th>
             <th><fmt:message key="issue.assignee"/></th>
         </tr>
     </thead>
@@ -39,6 +41,11 @@
                 </span>
             </td>
             <td>
+                <span class="nowrap">
+                    <fmt:formatDate value="${issue.updated}" />
+                </span>
+            </td>
+            <td>
                 <c:if test="${not empty issue.assignee}">
                     <c:if test="${not empty issue.assignee.mail}">
                         <a href="mailto:${issue.assignee.mail}" title="<c:out value="${issue.assignee.displayname}"/>"><c:out value="${issue.assignee.username}"/></a>

mercurial