{% extends "other_base.html" %} {% block title%}Docinfo|COVID-19 Detector{% endblock %} {% block content %}
{% if doctor.has_avatar %} 头像 {% else %}
{{ doctor.username[0] }}
{% endif %}
{{ doctor.name }}

最近活跃: {{moment(doctor.last_seen).fromNow() }}

返回

{{doctor.department}} 传染科

{{doctor.location}}

{{doctor.about_me}}

患者评价
{% if empty_comments %}

   评论区空空如也~

{% else %} {% for comment, author in comment_pairs %}
头像
{{ author.username }}
{% for i in range(5) %} {% if i < comment.star_num %} {% else %} {% endif %} {% endfor %}

{{ comment.body }}

{{ moment(comment.timestamp).format('LLL') }}

{% endfor %} {% endif %}
{% endblock %}