<cfif IsDefined("URL.changeClass")> <cfset SESSION.theClass = URL.changeClass> </cfif> <cfinvoke component="cfc.getters" method="getStudents" returnvariable="students"> <cfinvokeargument name="theClass" value='#SESSION.theClass#'> </cfinvoke> <cfinclude template="includes/head_teacher.cfm"> <body id="students"> <cfinclude template="includes/header_teacher.cfm"> <cfinclude template="includes/menu_teacher.cfm"> <div id="wrap" class="blue"> <div id="innerwrap"> <div class="blueHead" id="innerhead"> <cfinclude template="includes/chooser_class.cfm"> </div> <div class="greyContent" id="content"> <div id="topround"> <!-- nothing necessary here --> </div> <div id="firstColumn"> <h4>Students</h4> <ul id="childList"> <cfoutput query="students"> <li><a href="task_choose.cfm?UserID=#UserID#">#FirstName#</a></li> </cfoutput> </ul> </div> <div id="secondColumn"> <h4>Tasks</h4> <h5>Please select a student from the left to begin.</h5> </div> <div id="mainColumn"> </div> <div id="bottomround"> <!-- nothing necessary here --> </div> <!-- end content div --> </div> <!-- end innerwrap div --> </div> <!-- end wrap div --> </div> <div id="bottomwrap" class="bluebottom"> <!-- nothing necessary here --> </div> <cfinclude template="includes/footer_teacher.cfm">