12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
- <c:forEach items="${courseModel.batchesList}" var="b">
- <div class="bs-callout bs-callout-${b.batches.batchStatus=='已结束'?'grey':'danger'} course-batch-bs-callout">
- <h4 class="panel-heading">
- <a
- href="${pageContext.request.contextPath}/admin/batches/show/${b.batches.id}"
- target="_blank">${b.batches.name}</a>
- <a style="padding-left: 30px;">
- <span class="glyphicon glyphicon-time"></span> 评教时间: <fm:formatDate value="${b.batches.beginDate}" dateStyle="medium"/> ~ <fm:formatDate value="${b.batches.endDate}" dateStyle="medium"/>
- </a>
- <button style="" class="btn btn-info"
- href="${pageContext.request.contextPath}/admin/evalTable/show/${b.batches.leadEvalId}"
- target="_blank"> <span class="glyphicon glyphicon-file"></span> 点我查看评教表</button>
- <button style="" class="btn btn-danger" href="${pageContext.request.contextPath}/admin/statistics/course?cid=${course.cid}&cno=${course.cno}&bid=${b.batches.id}"
- target="_blank"> <span class="glyphicon glyphicon-stats"></span> 点我查看课程统计</button>
- </h4>
- <h5>
- </h5>
- <table
- class="table table-hover table-striped table-condensed">
- <thead>
- <tr>
- <td>领导名</td>
- <td>评分</td>
- <td>等级</td>
- <td>评教结果</td>
- </tr>
- </thead>
- <tbody>
- <c:forEach items="${b.leaTableList}" var="leaTable">
- <tr>
- <td>${leaTable.leader.name}</td>
- <td>${leaTable.score}</td>
- <td>${leaTable.level}</td>
- <td><a
- href="${pageContext.request.contextPath}/admin/eval/show/leader/${leaTable.id}" target="_blank"
- class="btn btn-warning">查看该评价</a></td>
- </tr>
- </c:forEach>
- </tbody>
- </table>
- </div>
- </c:forEach>
|