courseStatistics-question-panal.jsp 601 B

12345678910111213141516171819202122
  1. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  2. <div class="panel panel-default">
  3. <div class="panel-heading"> <code>${v.count}</code> ${quest.key}</div>
  4. <!-- Table -->
  5. <table class="table table-hover table-condensed">
  6. <thead>
  7. <tr >
  8. <td>#</td>
  9. <td>内容</td>
  10. </tr>
  11. </thead>
  12. <tbody>
  13. <c:forEach varStatus="vs" var="q" items="${quest.value}">
  14. <tr>
  15. <td>${vs.count}</td>
  16. <td>${q}</td>
  17. </tr>
  18. </c:forEach>
  19. </tbody>
  20. </table>
  21. </div>