云计算期末作业项目:线上作业提交
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

35 lines
806 B

{% extends "admin.html" %}
{% block main %}
<div class="container">
<!--提交信息的表格-->
<h1 class="mt-4 mb-3">{{homeworkName}}
</h1>
<table class="table table-hover" id="stuInfoTable">
<thead>
<tr>
<th>提交状态</th>
<th>学号</th>
<th>姓名</th>
</tr>
</thead>
<tbody>
{% for i in data %}
<tr>
{% if i[2] == 'yes' %}
<td style="color: green">
<strong>已提交</strong>
</td>
{% else %}
<td style="color: red">
<strong>未提交</strong>
</td>
{% endif %}
<td>{{ i[0] }}</td>
<td>{{ i[1] }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock %}