src/main/webapp/WEB-INF/jsp/issue-view.jsp

changeset 162
2adc8623dd89
parent 156
c5d6820d884e
child 165
b1fc8aed5969
equal deleted inserted replaced
161:3d9218457b62 162:2adc8623dd89
95 <td><c:out value="${issue.subject}"/></td> 95 <td><c:out value="${issue.subject}"/></td>
96 </tr> 96 </tr>
97 <tr> 97 <tr>
98 <th class="vtop"><fmt:message key="issue.description"/></th> 98 <th class="vtop"><fmt:message key="issue.description"/></th>
99 <td> 99 <td>
100 <textarea readonly rows="10"><c:out value="${issue.description}"/></textarea> 100 <div class="markdown-styled">
101 ${issue.description}
102 </div>
101 </td> 103 </td>
102 </tr> 104 </tr>
103 <tr> 105 <tr>
104 <th><fmt:message key="issue.assignee"/></th> 106 <th><fmt:message key="issue.assignee"/></th>
105 <td> 107 <td>
181 <fmt:formatDate type="BOTH" value="${comment.created}" /> 183 <fmt:formatDate type="BOTH" value="${comment.created}" />
182 <c:if test="${comment.updateCount gt 0}"> 184 <c:if test="${comment.updateCount gt 0}">
183 <!-- TODO: update count --> 185 <!-- TODO: update count -->
184 </c:if> 186 </c:if>
185 </div> 187 </div>
186 <div class="medskip"> 188 <div class="medskip markdown-styled">
187 <c:out value="${comment.comment}"/> 189 ${comment.comment}
188 </div> 190 </div>
189 </div> 191 </div>
190 </c:forEach> 192 </c:forEach>
191 </c:if> 193 </c:if>
192 194

mercurial