raw_report.html 1.1 KB

12345678910111213141516171819202122232425262728293031
  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">
  9. <b>Type: </b>
  10. <label class="label" style="background-color: rgb(244, 172, 7); margin-right: 5px;">
  11. <span class="glyphicon glyphicon-file" style="margin-right: 5px;"></span>
  12. Raw Report
  13. </label>
  14. {% if is_master %}
  15. <label class="label" style="background-color: rgb(252, 165, 4);">
  16. <span class="glyphicon glyphicon-file" style="margin-right: 5px;"></span>
  17. Master Report
  18. </label>
  19. {% endif %}
  20. </li> -->
  21. <li class="list-group-item" style="max-width: 290px; min-height: 363px;">
  22. <!-- <b>Content: </b><br> -->
  23. <span th:text="${bugReport.description}"></span><br />
  24. <img class="my-img-thumbnail pointer" th:src="${imgUrl}"
  25. th:each="imgUrl,iterStat : ${bugReport.getImgUrls()}"
  26. th:onclick="'javascript:showimage(\''+${imgUrl}+'\');'"/>
  27. </li>
  28. </ul>
  29. </html>