12345678910111213141516171819202122232425262728293031 |
- <!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">
- <b>Type: </b>
- <label class="label" style="background-color: rgb(244, 172, 7); margin-right: 5px;">
- <span class="glyphicon glyphicon-file" style="margin-right: 5px;"></span>
- Raw Report
- </label>
- {% if is_master %}
- <label class="label" style="background-color: rgb(252, 165, 4);">
- <span class="glyphicon glyphicon-file" style="margin-right: 5px;"></span>
- Master Report
- </label>
- {% endif %}
- </li> -->
- <li class="list-group-item" style="max-width: 290px; min-height: 363px;">
- <!-- <b>Content: </b><br> -->
- <span th:text="${bugReport.description}"></span><br />
- <img class="my-img-thumbnail pointer" th:src="${imgUrl}"
- th:each="imgUrl,iterStat : ${bugReport.getImgUrls()}"
- th:onclick="'javascript:showimage(\''+${imgUrl}+'\');'"/>
- </li>
- </ul>
- </html>
|