raw_report.html 673 B

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