经理审核系统 - 待审核用户列表
{{ request.session.username }},欢迎您!
| {{ forloop.counter }} | 审核项目 | 是否审核 | 操作 |
|---|---|---|---|
| {{ forloop.counter }} | {{ review.0 }} | {{ review.1 }} | {{ review.3 }} |
| 1 | {{ notUser }} | ||
以下是audit.css的编写示例:
.lay-out {
display: flex;
flex-direction: column;
}
.lay-out a {
margin-bottom: 10px;
}
table {
margin-top: 20px;
border-collapse: collapse;
width: 100%;
}
th, td {
padding: 10px;
text-align: left;
border-bottom: 1px solid #ddd;
}
th {
background-color: #f2f2f2;
}
将上述代码保存为audit.css文件,并将其放置在与HTML文件同级的static/css目录下。然后在HTML文件中引入该CSS文件即可。
原文地址: https://www.cveoy.top/t/topic/o4Oc 著作权归作者所有。请勿转载和采集!