📄 liststudent.vm
字号:
#include("top.htm")
<center >
<table width="778" border="0" cellpadding="0" cellspacing=10 bgcolor="#FFFFFF" class=datatable>
<tbody>
<tr>
<td bgcolor="#CBDCE0" height=15 class="td4">
<font class="style26">Home > <a href="AdminMain.vm">Admin Control Panel</a> > <a href="findRole.do">Role Module</a></font>
</td>
</tr>
<tr>
<td width="7" height="7"><img src="login_files/rounbl.gif" width="7" height="7" border="0"></td>
<td background="login_files/rounbline.gif"></td>
<td width="7" height="7"><img src="login_files/rounbr.gif" width="7" height="7" border="0"></td>
</tr>
</table>
#if($studentList.size()>0)
<table width="778" border=1 cellpadding="0" cellspacing="0" bordercolor="#5B909E" bgcolor="#FFFFFF" class="thin">
<tr>
<td class="td1" width=150>
Student ID
</td>
<td class="td3" width=250>
Student Name
</td>
<td class="td1">
Conduct
</td>
</tr>
#foreach($student in $studentList)
<tr>
<td class="td2">
$student.studentId
</td>
<td class="td4">
$student.name
</td>
<td class="td2" >
<A href="$link.setAction('listDiscipline').addQueryData('teacherID',$teacherID).addQueryData('studentID',$student.studentId).addQueryData('studentName',${student.name})"> discipline </A>
<A href="$link.setAction('listRemark').addQueryData('teacherID',$teacherID).addQueryData('studentID',$student.studentId).addQueryData('studentName',$student.name)"> remark </A>
</td>
</tr>
#end
</table>
#end
</td>
</tr>
</table>
</center>
#include("foot.htm")
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -