Files
order/web/templates/member/comment.html

43 lines
1.4 KiB
HTML
Raw Normal View History

2019-07-18 08:59:26 +08:00
{% extends "common/layout_main.html" %}
{% block content %}
2019-08-06 15:21:15 +08:00
{% include "common/tab_member.html" %}
2019-07-18 08:59:26 +08:00
<div class="row">
<div class="col-lg-12">
<table class="table table-bordered m-t">
<thead>
<tr>
<th>头像</th>
<th>姓名</th>
<th>美餐</th>
<th>评论内容</th>
<th>打分</th>
</tr>
</thead>
<tbody>
2019-08-06 15:21:15 +08:00
{% if list %}
{% for item in list %}
2019-07-18 08:59:26 +08:00
<tr>
<td>
2026-01-09 18:07:01 +08:00
<img alt="image" class="img-circle" src="{{ buildImageUrl(item.member_info.avatar) if item.member_info.avatar else buildStaticUrl('/images/common/avatar.png') }}" style="width: 40px;height: 40px;">
2019-07-18 08:59:26 +08:00
</td>
2019-08-06 15:21:15 +08:00
<td>{{ item.member_info.nickname }}</td>
2019-07-18 08:59:26 +08:00
<td>
2019-08-06 15:21:15 +08:00
{% for item_food in item.foods %}
{{ item_food.name }}、
{% endfor %}
2019-07-18 08:59:26 +08:00
</td>
2019-08-06 15:21:15 +08:00
<td>{{ item.content }}</td>
<td>{{ item.score }}</td>
2019-07-18 08:59:26 +08:00
</tr>
2019-08-06 15:21:15 +08:00
{% endfor %}
{% else %}
<tr><td colspan="5">暂无数据</td></tr>
{% endif %}
2019-07-18 08:59:26 +08:00
</tbody>
</table>
2019-08-06 15:21:15 +08:00
<!--分页代码已被封装到统一模板文件中-->
{% include 'common/pagenation.html' %}
2019-07-18 08:59:26 +08:00
</div>
</div>
{% endblock %}