Skip to content
Snippets Groups Projects
Commit a25dae65 authored by Roger W Feese's avatar Roger W Feese
Browse files

Corrected table header and columns to match bulletin request type.

parent 8ec5f122
No related branches found
No related tags found
1 merge request!25Add missing queue managers -- bulletin request queue manager
...@@ -27,7 +27,7 @@ $this->headLink()->appendStylesheet($this->baseUrl() . '/css/bulletin/queue-mana ...@@ -27,7 +27,7 @@ $this->headLink()->appendStylesheet($this->baseUrl() . '/css/bulletin/queue-mana
<?php if ($isCurrentPeriod) { ?> <?php if ($isCurrentPeriod) { ?>
<th>Advance</th> <th>Advance</th>
<?php } ?> <?php } ?>
<th>Major</th> <th>Section</th>
<th>College</th> <th>College</th>
<?php foreach ($this->users as $user) { ?> <?php foreach ($this->users as $user) { ?>
<th><?php echo $user->getFirstName() . ' ' . $user->getLastName(); ?></th> <th><?php echo $user->getFirstName() . ' ' . $user->getLastName(); ?></th>
...@@ -41,7 +41,7 @@ $this->headLink()->appendStylesheet($this->baseUrl() . '/css/bulletin/queue-mana ...@@ -41,7 +41,7 @@ $this->headLink()->appendStylesheet($this->baseUrl() . '/css/bulletin/queue-mana
<?php if ($isCurrentPeriod) { ?> <?php if ($isCurrentPeriod) { ?>
<td><?php echo $this->formCheckbox('requests[' . $request->getId() . ']'); ?> <td><?php echo $this->formCheckbox('requests[' . $request->getId() . ']'); ?>
<?php } ?> <?php } ?>
<td><?php echo $bulletin->getMajor(); ?></td> <td><?php echo $this->escape($bulletin->getMajor() ? $bulletin->getMajor() : $bulletin->getCollegeLong()); ?></td>
<td><?php echo $bulletin->getCollege(); ?></td> <td><?php echo $bulletin->getCollege(); ?></td>
<?php foreach ($this->users as $user) { <?php foreach ($this->users as $user) {
$vote = $userVotes[$user->getId()]; ?> $vote = $userVotes[$user->getId()]; ?>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment