org.openurp.edu.teaching.components.courseTableStyle.ftl Maven / Gradle / Ivy
[#ftl]
[#macro tableLegend]
说明:课表中显示"张某某 法律基础(0678)(5-17,2201)" 表示授课教师:张某某,课程名称:法律基础,课程序号:0678,上课起止周:第5周到第17周,上课教室:2201
[/#macro]
[#assign weekNames = ['--','星期一','星期二','星期三','星期四','星期五','星期六','星期日'] /]
[#macro getListPropertyId(beanList)][#list beanList as bean][#if bean_index>0],[/#if]${(bean.id)!}[/#list][/#macro]
[#macro initCourseTable(table,tableIndex)]
[#if table.style == "WEEK_TABLE"]
节次/星期
[#list table.weekdays as wd]
${weekNames[wd.id]}
[/#list]
[#list table.timeSetting.units?sort_by("indexno") as unit]
${unit.name}${unit.beginAt}-${unit.endAt}
[#list table.weekdays as wd]
[/#list]
[/#list]
[@tableScripts table,tableIndex/]
[#else]
星期/节次
[#list table.timeSetting.units?sort_by("indexno") as unit]
${unit.beginAt}-${unit.endAt}
[/#list]
[#list table.timeSetting.units?sort_by("indexno") as unit]
${unit.name}
[/#list]
[#list table.weekdays as wd]
${weekNames[wd.id]}
[#list 1..table.timeSetting.units?size as unit]
[/#list]
[/#list]
[@tableScripts table,tableIndex/]
[/#if]
[@tableLegend/]
[/#macro]
[#macro tableScripts(table,tableIndex)]
[#if table.timePublished]
[/#if]
[/#macro]