#157 adds assignee column to issue list

Tue, 10 Aug 2021 18:18:06 +0200

author
Mike Becker <universe@uap-core.de>
date
Tue, 10 Aug 2021 18:18:06 +0200
changeset 220
1f7e76a213dd
parent 219
556c03f1dd4e
child 221
33d7833ca54c

#157 adds assignee column to issue list

src/main/webapp/WEB-INF/jsp/site.jsp file | annotate | diff | comparison | revisions
src/main/webapp/WEB-INF/jspf/issue-list.jspf file | annotate | diff | comparison | revisions
src/main/webapp/lightpit.css file | annotate | diff | comparison | revisions
     1.1 --- a/src/main/webapp/WEB-INF/jsp/site.jsp	Mon Aug 09 17:09:54 2021 +0200
     1.2 +++ b/src/main/webapp/WEB-INF/jsp/site.jsp	Tue Aug 10 18:18:06 2021 +0200
     1.3 @@ -31,7 +31,7 @@
     1.4  <%@taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
     1.5  
     1.6  <%-- Version suffix for forcing browsers to update the CSS / JS files --%>
     1.7 -<c:set scope="page" var="versionSuffix" value="20210809b"/>
     1.8 +<c:set scope="page" var="versionSuffix" value="20210810"/>
     1.9  
    1.10  <%-- Make the base href easily available at request scope --%>
    1.11  <c:set scope="page" var="baseHref" value="${requestScope[Constants.REQ_ATTR_BASE_HREF]}"/>
     2.1 --- a/src/main/webapp/WEB-INF/jspf/issue-list.jspf	Mon Aug 09 17:09:54 2021 +0200
     2.2 +++ b/src/main/webapp/WEB-INF/jspf/issue-list.jspf	Tue Aug 10 18:18:06 2021 +0200
     2.3 @@ -5,13 +5,15 @@
     2.4  --%>
     2.5  <table class="fullwidth datatable medskip">
     2.6      <colgroup>
     2.7 -        <col width="auto" />
     2.8 -        <col width="10%" />
     2.9 +        <col style="width: auto" />
    2.10 +        <col style="width: 10%" />
    2.11 +        <col style="width: 10%" />
    2.12      </colgroup>
    2.13      <thead>
    2.14          <tr>
    2.15              <th><fmt:message key="issue.subject"/></th>
    2.16              <th><fmt:message key="issue.eta"/></th>
    2.17 +            <th><fmt:message key="issue.assignee"/></th>
    2.18          </tr>
    2.19      </thead>
    2.20      <tbody>
    2.21 @@ -36,6 +38,16 @@
    2.22                      <fmt:formatDate value="${issue.eta}" />
    2.23                  </span>
    2.24              </td>
    2.25 +            <td>
    2.26 +                <c:if test="${not empty issue.assignee}">
    2.27 +                    <c:if test="${not empty issue.assignee.mail}">
    2.28 +                        <a href="mailto:${issue.assignee.mail}" title="<c:out value="${issue.assignee.displayname}"/>"><c:out value="${issue.assignee.username}"/></a>
    2.29 +                    </c:if>
    2.30 +                    <c:if test="${empty issue.assignee.mail}">
    2.31 +                        <span title="<c:out value="${issue.assignee.displayname}"/>"><c:out value="${issue.assignee.username}"/></span>
    2.32 +                    </c:if>
    2.33 +                </c:if>
    2.34 +            </td>
    2.35          </tr>
    2.36      </c:forEach>
    2.37      </tbody>
     3.1 --- a/src/main/webapp/lightpit.css	Mon Aug 09 17:09:54 2021 +0200
     3.2 +++ b/src/main/webapp/lightpit.css	Tue Aug 10 18:18:06 2021 +0200
     3.3 @@ -132,7 +132,7 @@
     3.4  
     3.5  #sideMenu .menuEntry {
     3.6      white-space: nowrap;
     3.7 -    padding-right: 1em;
     3.8 +    padding-right: 2em;
     3.9      padding-top: .25em;
    3.10      padding-bottom: .25em;
    3.11      border-bottom-style: solid;
    3.12 @@ -149,15 +149,15 @@
    3.13  }
    3.14  
    3.15  #sideMenu .level-0 {
    3.16 -    padding-left: .25em;
    3.17 +    padding-left: .75em;
    3.18  }
    3.19  
    3.20  #sideMenu .level-1 {
    3.21 -    padding-left: .75em;
    3.22 +    padding-left: 1.25em;
    3.23  }
    3.24  
    3.25  #sideMenu .level-2 {
    3.26 -    padding-left: 2em;
    3.27 +    padding-left: 2.5em;
    3.28  }
    3.29  
    3.30  #content-area {

mercurial