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
     1.1 --- a/src/main/webapp/WEB-INF/changelogs/changelog-de.jspf	Sat Jun 04 18:35:45 2022 +0200
     1.2 +++ b/src/main/webapp/WEB-INF/changelogs/changelog-de.jspf	Sat Jun 04 18:47:06 2022 +0200
     1.3 @@ -33,6 +33,7 @@
     1.4      <li>Datum der Veröffentlichung und des Supportendes zu Versionen hinzugefügt.</li>
     1.5      <li>Gesamtanzahl der Kommentare wird nun angezeigt.</li>
     1.6      <li>Spalte für zugewiesener Entwickler zu den Vorgangstabellen hinzugefügt.</li>
     1.7 +    <li>Spalte für den Zeitpunkt der letzten Aktualisierung zu den Vorgangstabellen hinzugefügt.</li>
     1.8      <li>E-Mail Link in Vorgangsansicht hinzugefügt, wenn der Zugewiesene eine Mailadresse hat.</li>
     1.9      <li>Formatierung für Status-Icons hinzugefügt, die als Text eingegeben werden: (/), (x) sowie (!)</li>
    1.10      <li>Installationsanweisungen hinzugefügt.</li>
     2.1 --- a/src/main/webapp/WEB-INF/changelogs/changelog.jspf	Sat Jun 04 18:35:45 2022 +0200
     2.2 +++ b/src/main/webapp/WEB-INF/changelogs/changelog.jspf	Sat Jun 04 18:47:06 2022 +0200
     2.3 @@ -33,6 +33,7 @@
     2.4      <li>Add release and end of life dates to versions.</li>
     2.5      <li>Add the total number of comments to the caption.</li>
     2.6      <li>Add assignee to the issue overview tables.</li>
     2.7 +    <li>Add updated timestamp to the issue overview tables.</li>
     2.8      <li>Add mailto link in issue view when the assignee has a mail address.</li>
     2.9      <li>Add formatting for (/), (x), and (!) status indicators.</li>
    2.10      <li>Add install instructions.</li>
     3.1 --- a/src/main/webapp/WEB-INF/jspf/issue-list.jspf	Sat Jun 04 18:35:45 2022 +0200
     3.2 +++ b/src/main/webapp/WEB-INF/jspf/issue-list.jspf	Sat Jun 04 18:47:06 2022 +0200
     3.3 @@ -8,11 +8,13 @@
     3.4          <col style="width: auto" />
     3.5          <col style="width: 10%" />
     3.6          <col style="width: 10%" />
     3.7 +        <col style="width: 10%" />
     3.8      </colgroup>
     3.9      <thead>
    3.10          <tr>
    3.11              <th><fmt:message key="issue.subject"/></th>
    3.12              <th><fmt:message key="issue.eta"/></th>
    3.13 +            <th><fmt:message key="issue.updated"/></th>
    3.14              <th><fmt:message key="issue.assignee"/></th>
    3.15          </tr>
    3.16      </thead>
    3.17 @@ -39,6 +41,11 @@
    3.18                  </span>
    3.19              </td>
    3.20              <td>
    3.21 +                <span class="nowrap">
    3.22 +                    <fmt:formatDate value="${issue.updated}" />
    3.23 +                </span>
    3.24 +            </td>
    3.25 +            <td>
    3.26                  <c:if test="${not empty issue.assignee}">
    3.27                      <c:if test="${not empty issue.assignee.mail}">
    3.28                          <a href="mailto:${issue.assignee.mail}" title="<c:out value="${issue.assignee.displayname}"/>"><c:out value="${issue.assignee.username}"/></a>

mercurial