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.
55 lines
2.3 KiB
55 lines
2.3 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Jobs</title>
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='result.css') }}">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<img alt="Avatar" class="avatar" src="{{ url_for('static', filename='/images/avatar.png') }}" alt="logo">
|
|
<h1 class="title">职位信息</h1>
|
|
<table class="jobs-table">
|
|
<thead>
|
|
<tr class="table-header-row">
|
|
<th class="job-title-col">工作名称</th>
|
|
<th class="job-location-col">地区</th>
|
|
<th class="job-salary-col">薪资</th>
|
|
<th class="job-labels-col">标签</th>
|
|
<th class="job-skills-col">能力要求</th>
|
|
<th class="company-name-col">公司名字</th>
|
|
<th class="company-info-col">公司信息</th>
|
|
<th class="company-benefits-col">公司福利</th>
|
|
<th class="company-description-col">公司描述</th>
|
|
<th class="company-nature-col">公司性质</th>
|
|
<th class="company-address-col">公司地址</th>
|
|
<th class="job-detail-link-col">详情链接</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for row in rows %}
|
|
<tr class="table-row">
|
|
<td class="job-title-col">{{ row[0] }}</td>
|
|
<td class="job-location-col">{{ row[1] }}</td>
|
|
<td class="job-salary-col">{{ row[2] }}</td>
|
|
<td class="job-labels-col">{{ row[3] }}</td>
|
|
<td class="job-skills-col">{{ row[4] }}</td>
|
|
<td class="company-name-col">{{ row[5] }}</td>
|
|
<td class="company-info-col">{{ row[6] }}</td>
|
|
<td class="company-benefits-col">{{ row[7] }}</td>
|
|
<td class="company-description-col">{{ row[8] }}</td>
|
|
<td class="company-nature-col">{{ row[9] }}</td>
|
|
<td class="company-address-col">{{ row[10] }}</td>
|
|
<td class="job-detail-link-col"><a href="{{ row[11] }}">点击查看</a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<script src="{{ url_for('static', filename='js/myscript.js') }}"></script>
|
|
<div class="pagination">
|
|
<button id="prev-btn">上一页</button>
|
|
<button id="next-btn">下一页</button>
|
|
</div>
|
|
</body>
|
|
</html> |