1 <%-- |
1 <%-- |
2 issues: List<Issue> |
2 issues: List<Issue> |
3 issuesHref: String |
3 issuesHref: String |
|
4 showComponentInfo: boolean |
4 showVersionInfo: boolean |
5 showVersionInfo: boolean |
|
6 showVariantInfo: boolean |
5 showProjectInfo: boolean |
7 showProjectInfo: boolean |
6 --%> |
8 --%> |
7 <table class="fullwidth datatable medskip"> |
9 <table class="fullwidth datatable medskip"> |
8 <colgroup> |
10 <colgroup> |
9 <c:if test="${showProjectInfo}"> |
11 <c:if test="${showProjectInfo}"> |
52 <div class="issue-tag-auto-color ${issue.component.color.textColorClass}" |
54 <div class="issue-tag-auto-color ${issue.component.color.textColorClass}" |
53 style="background-color: ${issue.component.color}"> |
55 style="background-color: ${issue.component.color}"> |
54 <c:out value="${issue.component.name}"/> |
56 <c:out value="${issue.component.name}"/> |
55 </div> |
57 </div> |
56 </c:if> |
58 </c:if> |
|
59 <c:if test="${showVariantInfo and issue.trackingVariantStatus}"> |
|
60 <c:forEach items="${issue.variantStatus}" var="vs"> |
|
61 <div class="issue-tag-auto-color ${vs.key.color.textColorClass}" |
|
62 style="background-color: ${vs.key.color}" |
|
63 title="<fmt:message key="issue.status.${vs.value}" />" |
|
64 > |
|
65 <c:out value="${vs.key.name}"/> |
|
66 </div> |
|
67 </c:forEach> |
|
68 </c:if> |
57 <c:if test="${showVersionInfo and issue.resolved != null}"> |
69 <c:if test="${showVersionInfo and issue.resolved != null}"> |
58 <div class="issue-tag"> |
70 <div class="issue-tag"> |
59 <c:out value="${issue.resolved.name}"/> |
71 <c:out value="${issue.resolved.name}"/> |
60 </div> |
72 </div> |
61 </c:if> |
73 </c:if> |