src/main/webapp/WEB-INF/jspf/issue-list.jspf

changeset 220
1f7e76a213dd
parent 184
e8eecee6aadf
child 251
7ea0f266da41
     1.1 --- a/src/main/webapp/WEB-INF/jspf/issue-list.jspf	Mon Aug 09 17:09:54 2021 +0200
     1.2 +++ b/src/main/webapp/WEB-INF/jspf/issue-list.jspf	Tue Aug 10 18:18:06 2021 +0200
     1.3 @@ -5,13 +5,15 @@
     1.4  --%>
     1.5  <table class="fullwidth datatable medskip">
     1.6      <colgroup>
     1.7 -        <col width="auto" />
     1.8 -        <col width="10%" />
     1.9 +        <col style="width: auto" />
    1.10 +        <col style="width: 10%" />
    1.11 +        <col style="width: 10%" />
    1.12      </colgroup>
    1.13      <thead>
    1.14          <tr>
    1.15              <th><fmt:message key="issue.subject"/></th>
    1.16              <th><fmt:message key="issue.eta"/></th>
    1.17 +            <th><fmt:message key="issue.assignee"/></th>
    1.18          </tr>
    1.19      </thead>
    1.20      <tbody>
    1.21 @@ -36,6 +38,16 @@
    1.22                      <fmt:formatDate value="${issue.eta}" />
    1.23                  </span>
    1.24              </td>
    1.25 +            <td>
    1.26 +                <c:if test="${not empty issue.assignee}">
    1.27 +                    <c:if test="${not empty issue.assignee.mail}">
    1.28 +                        <a href="mailto:${issue.assignee.mail}" title="<c:out value="${issue.assignee.displayname}"/>"><c:out value="${issue.assignee.username}"/></a>
    1.29 +                    </c:if>
    1.30 +                    <c:if test="${empty issue.assignee.mail}">
    1.31 +                        <span title="<c:out value="${issue.assignee.displayname}"/>"><c:out value="${issue.assignee.username}"/></span>
    1.32 +                    </c:if>
    1.33 +                </c:if>
    1.34 +            </td>
    1.35          </tr>
    1.36      </c:forEach>
    1.37      </tbody>

mercurial