25 lines
498 B
HTML
25 lines
498 B
HTML
{% extends 'layouts/master.html' %}
|
|
{% block title %}View{% endblock %}
|
|
{% block body %}
|
|
<h1>Contacts</h1>
|
|
<table class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">公司名称</th>
|
|
<th scope="col">咨询时间</th>
|
|
<th scope="col">咨询主题</th>
|
|
<td></td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for contact in contacts %}
|
|
<tr>
|
|
<td>{{ contact.name }}</td>
|
|
<td>{{ contact.date }}</td>
|
|
<td>{{ contact.subject }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock %}
|