{% extends 'templates/main.volt' %} {% block content %} {%- macro source_type_info(value) %} {% if value == 1 %} 免费 {% elseif value == 2 %} 付费 {% elseif value == 3 %} 畅学 {% elseif value == 4 %} 导入 {% elseif value == 5 %} 积分 {% elseif value == 6 %} 抽奖 {% endif %} {%- endmacro %} {% set add_url = url({'for':'admin.student.add'}) %} {% set search_url = url({'for':'admin.student.search'}) %}
基本信息 | 学习情况 | 来源类型 | 加入日期 | 有效期限 | 操作 |
---|---|---|---|---|---|
课程:{{ item.course.title }}({{ item.course.id }}) 学员:{{ item.user.name }}({{ item.user.id }}) |
时长:{{ item.duration|duration }} |
{{ source_type_info(item.source_type) }} | {{ date('Y-m-d',item.create_time) }} |
{% if item.source_type in [1,3] %}
N/A
{% else %}
开始:{{ date('Y-m-d',item.create_time) }} 结束:{{ date('Y-m-d',item.expiry_time) }} {% endif %} |