src/main/webapp/WEB-INF/jsp/projects.jsp

changeset 81
1a2e7b5d48f7
parent 78
bb4c52bf3439
child 82
4ec7f2600c83
     1.1 --- a/src/main/webapp/WEB-INF/jsp/projects.jsp	Sun May 24 15:30:43 2020 +0200
     1.2 +++ b/src/main/webapp/WEB-INF/jsp/projects.jsp	Sat May 30 15:26:15 2020 +0200
     1.3 @@ -44,21 +44,23 @@
     1.4  </div>
     1.5  
     1.6  <c:if test="${not empty projects}">
     1.7 -    <table id="project-list" class="datatable medskip fullwidth">
     1.8 +    <table id="project-list" class="datatable medskip">
     1.9          <colgroup>
    1.10              <col>
    1.11 -            <col style="width: 10%">
    1.12 -            <col style="width: 35%">
    1.13 -            <col style="width: 30%">
    1.14 -            <col style="width: 25%">
    1.15 +            <col width="20%">
    1.16 +            <col width="50%">
    1.17 +            <col width="10%">
    1.18 +            <col width="10%">
    1.19 +            <col width="10%">
    1.20          </colgroup>
    1.21          <thead>
    1.22          <tr>
    1.23              <th></th>
    1.24              <th><fmt:message key="thead.name"/></th>
    1.25 -            <th><fmt:message key="thead.description"/></th>
    1.26              <th><fmt:message key="thead.repoUrl"/></th>
    1.27 -            <th><fmt:message key="thead.owner"/></th>
    1.28 +            <th><fmt:message key="thead.issues.open"/></th>
    1.29 +            <th><fmt:message key="thead.issues.active"/></th>
    1.30 +            <th><fmt:message key="thead.issues.done"/></th>
    1.31          </tr>
    1.32          </thead>
    1.33          <tbody>
    1.34 @@ -67,17 +69,15 @@
    1.35                  <td style="width: 2em;"><a href="./projects/edit?id=${project.id}">&#x270e;</a></td>
    1.36                  <td><a href="./projects/view?pid=${project.id}"><c:out value="${project.name}"/></a>
    1.37                  </td>
    1.38 -                <td><c:out value="${project.description}"/></td>
    1.39                  <td>
    1.40                      <c:if test="${not empty project.repoUrl}">
    1.41                          <a target="_blank" href="<c:out value="${project.repoUrl}"/>"><c:out
    1.42                                  value="${project.repoUrl}"/></a>
    1.43                      </c:if>
    1.44                  </td>
    1.45 -                <td>
    1.46 -                    <c:if test="${not empty project.owner}"><c:out value="${project.owner.displayname}"/></c:if>
    1.47 -                    <c:if test="${empty project.owner}"><fmt:message key="placeholder.null-owner"/></c:if>
    1.48 -                </td>
    1.49 +                <td>${project.openIssues}</td>
    1.50 +                <td>${project.activeIssues}</td>
    1.51 +                <td>${project.doneIssues}</td>
    1.52              </tr>
    1.53          </c:forEach>
    1.54          </tbody>

mercurial