Skip to content
Snippets Groups Projects
Commit 4382f41b authored by Tim Steiner's avatar Tim Steiner
Browse files

Fix to display course letter on Home Page lists

parent 13593e2d
Branches
No related tags found
No related merge requests found
......@@ -42,7 +42,8 @@
<tr <?php echo (++$row % 2 ? 'class="odd"' : ''); ?>>
<td><input type="checkbox" /></td>
<td><?php echo $request->getCourseGeneration()->subject . ' '
. $request->getCourseGeneration()->courseNumber; ?></td>
. $request->getCourseGeneration()->courseNumber
. $request->getCourseGeneration()->courseLetter; ?></td>
<td>NONC</td>
<td><?php echo $request->type; ?></td>
<td><select><option>Submission</option></select></td>
......@@ -87,7 +88,8 @@
<tr <?php echo (++$row % 2 ? 'class="odd"' : ''); ?>>
<td><input type="checkbox" /></td>
<td><?php echo $request->getCourseGeneration()->subject . ' '
. $request->getCourseGeneration()->courseNumber; ?></td>
. $request->getCourseGeneration()->courseNumber
. $request->getCourseGeneration()->courseLetter; ?></td>
<td>NONC</td>
<td><?php echo $request->type; ?></td>
<td><select><option>Submission</option></select></td>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment