{% extends 'admin/base.html' %} {% block title %}仪表板 - 无锡东舜信息科技有限公司{% endblock %} {% block content %}

管理仪表板

{{ today|date:"Y年m月d日" }}
{{ products }}
产品数量
{{ customers }}
客户数量
{{ quotations }}
报价单数量
{{ messages }}
未读留言

最近报价单

{% if recent_quotations %}
{% for quotation in recent_quotations %}

{{ quotation.quotation_no }}

{{ quotation.customer.name }}

{{ quotation.created_at|date:"m-d H:i" }} | ¥{{ quotation.total_amount }}
{{ quotation.get_status_display }}
{% endfor %}
{% else %}

暂无报价单

创建报价单
{% endif %}

最近留言

{% if recent_messages %}
{% for message in recent_messages %}

{{ message.name }}

{{ message.subject }}

{{ message.created_at|date:"m-d H:i" }}
{% if message.is_read %}已读{% else %}未读{% endif %}
{% endfor %}
{% else %}

暂无留言

{% endif %}

快速操作

{% endblock %}