199 </tr> |
199 </tr> |
200 </thead> |
200 </thead> |
201 <tbody> |
201 <tbody> |
202 <c:forEach var="commitLink" items="${viewmodel.commitLinks}"> |
202 <c:forEach var="commitLink" items="${viewmodel.commitLinks}"> |
203 <tr> |
203 <tr> |
204 <td> |
204 <td class="nowrap"> |
205 <c:if test="${not empty commitLink.timestamp}"> |
205 <c:if test="${not empty commitLink.timestamp}"> |
206 <fmt:formatDate value="${commitLink.timestamp}" timeZone="${timezone}" type="both"/> |
206 <fmt:formatDate value="${commitLink.timestamp}" timeZone="${timezone}" pattern="yyyy-MM-dd HH:mm:ss"/> |
207 </c:if> |
207 </c:if> |
208 </td> |
208 </td> |
209 <td><a href="${commitLink.url}" target="_blank">${commitLink.hash}</a></td> |
209 <td><a href="${commitLink.url}" target="_blank">${commitLink.hash}</a></td> |
210 <td><c:out value="${commitLink.message}"/> </td> |
210 <td><c:out value="${commitLink.message}"/> </td> |
211 </tr> |
211 </tr> |