1234567891011121314151617 |
- <!DOCTYPE html>
- <html lang="zh-CN" xmlns:th="http://www.thymeleaf.org">
- <ul class="list-group" style="max-width: 331px;">
- <li class="list-group-item" style="background-color: rgb(244, 172, 7); color: white;">
- <b th:if="${isMaster}" th:text="|Master-${bugReport.id}|"></b>
- <b th:unless="${isMaster}" th:text="${bugReport.id}"></b>
- </li>
- <li class="list-group-item" style="max-width: 290px; min-height: 363px;">
- <span th:text="${bugReport.description}"></span><br />
- <img class="my-img-thumbnail pointer" th:src="${imgUrl}"
- th:each="imgUrl,iterStat : ${bugReport.getImgUrls()}"
- th:onclick="showimage([[${imgUrl}]])"/>
- </li>
- </ul>
- </html>
|