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

Removed checkboxes from home page, they don't have any use!

parent 27c94251
No related branches found
No related tags found
No related merge requests found
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
<div class="content"> <div class="content">
<table class="course_list"> <table class="course_list">
<tr> <tr>
<th id="check">&#160;</th> <!-- th id="check">&#160;</th -->
<th id="course">Course</th> <th id="course">Course</th>
<th id="college">College</th> <th id="college">College</th>
<th id="type">Type</th> <th id="type">Type</th>
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
} }
?> ?>
<tr <?php echo (++$row % 2 ? 'class="odd"' : ''); ?>> <tr <?php echo (++$row % 2 ? 'class="odd"' : ''); ?>>
<td><input type="checkbox" /></td> <!-- td><input type="checkbox" /></td -->
<td><?php echo $originalCourse->subject . ' ' <td><?php echo $originalCourse->subject . ' '
. $originalCourse->courseNumber . $originalCourse->courseNumber
. $originalCourse->courseLetter; ?></td> . $originalCourse->courseLetter; ?></td>
...@@ -83,7 +83,7 @@ ...@@ -83,7 +83,7 @@
<?php } else { ?> <?php } else { ?>
<table class="course_list"> <table class="course_list">
<tr> <tr>
<th id="check">&#160;</th> <!-- th id="check">&#160;</th -->
<th id="course">Course</th> <th id="course">Course</th>
<th id="college">College</th> <th id="college">College</th>
<th id="type">Type</th> <th id="type">Type</th>
...@@ -101,7 +101,7 @@ ...@@ -101,7 +101,7 @@
} }
?> ?>
<tr <?php echo (++$row % 2 ? 'class="odd"' : ''); ?>> <tr <?php echo (++$row % 2 ? 'class="odd"' : ''); ?>>
<td><input type="checkbox" /></td> <!-- td><input type="checkbox" /></td -->
<td><?php echo $originalCourse->subject . ' ' <td><?php echo $originalCourse->subject . ' '
. $originalCourse->courseNumber . $originalCourse->courseNumber
. $originalCourse->courseLetter; ?></td> . $originalCourse->courseLetter; ?></td>
...@@ -159,7 +159,7 @@ ...@@ -159,7 +159,7 @@
<form action="/Home/SubmitDecisions" method="post"> <form action="/Home/SubmitDecisions" method="post">
<table class="course_list"> <table class="course_list">
<tr> <tr>
<th id="check">&#160;</th> <!-- th id="check">&#160;</th -->
<th id="course">Course</th> <th id="course">Course</th>
<th id="college">College</th> <th id="college">College</th>
<th id="type">Type</th> <th id="type">Type</th>
...@@ -177,7 +177,7 @@ ...@@ -177,7 +177,7 @@
} }
?> ?>
<tr <?php echo (++$row % 2 ? 'class="odd"' : ''); ?>> <tr <?php echo (++$row % 2 ? 'class="odd"' : ''); ?>>
<td><input type="checkbox" /></td> <!-- td><input type="checkbox" /></td -->
<td><?php echo $originalCourse->subject . ' ' <td><?php echo $originalCourse->subject . ' '
. $originalCourse->courseNumber . $originalCourse->courseNumber
. $originalCourse->courseLetter; ?></td> . $originalCourse->courseLetter; ?></td>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment