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

changeset 134
f47e82cd6077
parent 132
57e5a4624919
child 180
009700915269
equal deleted inserted replaced
133:ef075cd7ce55 134:f47e82cd6077
66 </thead> 66 </thead>
67 <tbody> 67 <tbody>
68 <c:forEach var="projectInfo" items="${viewmodel.projectList}"> 68 <c:forEach var="projectInfo" items="${viewmodel.projectList}">
69 <c:set var="project" scope="page" value="${projectInfo.project}"/> 69 <c:set var="project" scope="page" value="${projectInfo.project}"/>
70 <tr class="nowrap"> 70 <tr class="nowrap">
71 <td style="width: 2em;"><a href="./projects/${project.id}/edit">&#x270e;</a></td> 71 <td style="width: 2em;"><a href="./projects/${project.node}/edit">&#x270e;</a></td>
72 <td><a href="./projects/${project.id}/versions/"><c:out value="${project.name}"/></a> 72 <td><a href="./projects/${project.node}/versions/"><c:out value="${project.name}"/></a>
73 </td> 73 </td>
74 <td> 74 <td>
75 <c:if test="${not empty project.repoUrl}"> 75 <c:if test="${not empty project.repoUrl}">
76 <a target="_blank" href="<c:out value="${project.repoUrl}"/>"><c:out 76 <a target="_blank" href="<c:out value="${project.repoUrl}"/>"><c:out
77 value="${project.repoUrl}"/></a> 77 value="${project.repoUrl}"/></a>
78 </c:if> 78 </c:if>
79 </td> 79 </td>
80 <td class="hright"> 80 <td class="hright">
81 <c:if test="${not empty projectInfo.latestVersion}"> 81 <c:if test="${not empty projectInfo.latestVersion}">
82 <a href="./projects/${project.id}/versions/${projectInfo.latestVersion.id}"><c:out value="${projectInfo.latestVersion.name}"/></a> 82 <a href="./projects/${project.node}/all-components/${projectInfo.latestVersion.node}/issues/"><c:out value="${projectInfo.latestVersion.name}"/></a>
83 </c:if> 83 </c:if>
84 </td> 84 </td>
85 <td class="hright"> 85 <td class="hright">
86 <c:if test="${not empty projectInfo.nextVersion}"> 86 <c:if test="${not empty projectInfo.nextVersion}">
87 <a href="./projects/${project.id}/versions/${projectInfo.nextVersion.id}"><c:out value="${projectInfo.nextVersion.name}"/></a> 87 <a href="./projects/${project.node}/all-components/${projectInfo.nextVersion.node}/issues/"><c:out value="${projectInfo.nextVersion.name}"/></a>
88 </c:if> 88 </c:if>
89 </td> 89 </td>
90 <td class="hright">${projectInfo.issueSummary.open}</td> 90 <td class="hright">${projectInfo.issueSummary.open}</td>
91 <td class="hright">${projectInfo.issueSummary.active}</td> 91 <td class="hright">${projectInfo.issueSummary.active}</td>
92 <td class="hright">${projectInfo.issueSummary.done}</td> 92 <td class="hright">${projectInfo.issueSummary.done}</td>

mercurial