{% extends "base.html" %} {% block title %}充值记录 - 学生课程管理系统{% endblock %} {% block content %}

充值记录

学员充值 {% if current_user.has_permission('recharge_export') %} 导出Excel{% endif %}
{% for r in records %} {% endfor %} {% if not records %} {% endif %}
ID时间学员课程充值金额正课课时赠课课时关联活动支付方式操作人备注
{{ r.id }} {{ r.created_at.strftime('%Y-%m-%d %H:%M') }} {{ r.student.name }} {{ r.course.name }} ¥{{ r.amount }} {{ r.normal_hours }} {% if r.gifted_hours > 0 %}+{{ r.gifted_hours }}{% else %}0{% endif %} {{ r.activity.name if r.activity else '-' }} {{ r.payment_method or '-' }} {{ r.operator.real_name }} {{ r.remark or '-' }}
暂无充值记录
{% endblock %}