Skip to content
Snippets Groups Projects
Commit 5012122c authored by Eric Rasmussen's avatar Eric Rasmussen
Browse files

Add new status option: Recommended for Award

parent 2175cd7c
No related branches found
No related tags found
No related merge requests found
...@@ -14,6 +14,8 @@ ...@@ -14,6 +14,8 @@
<span class="bidstatus openforbids">Status: <em><?php echo $context->juncture; ?></em></span> <span class="bidstatus openforbids">Status: <em><?php echo $context->juncture; ?></em></span>
<?php elseif ($context->juncture == 'In Evaluation') : ?> <?php elseif ($context->juncture == 'In Evaluation') : ?>
<span class="bidstatus inevaluation">Status: <em><?php echo $context->juncture; ?></em></span> <span class="bidstatus inevaluation">Status: <em><?php echo $context->juncture; ?></em></span>
<?php elseif ($context->juncture == 'Recommendation of Award') : ?>
<span class="bidstatus awarded">Status: <em><?php echo $context->juncture; ?></em></span>
<?php elseif ($context->juncture == 'Awarded') : ?> <?php elseif ($context->juncture == 'Awarded') : ?>
<span class="bidstatus awarded">Status: <em><?php echo $context->juncture; ?> <?php echo (!empty($context->award) ? ' to '.$context->award :"") ?></em></span> <span class="bidstatus awarded">Status: <em><?php echo $context->juncture; ?> <?php echo (!empty($context->award) ? ' to '.$context->award :"") ?></em></span>
<?php elseif ($context->juncture == 'Cancelled') : ?> <?php elseif ($context->juncture == 'Cancelled') : ?>
......
...@@ -79,7 +79,7 @@ if (getValue($context, 'id') > 0) { ...@@ -79,7 +79,7 @@ if (getValue($context, 'id') > 0) {
<label for="juncture">Status</label> <label for="juncture">Status</label>
<select name="juncture"> <select name="juncture">
<option value=""></option> <option value=""></option>
<?php foreach (array('Open for Bids','In Evaluation','Awarded','Not Awarded','Cancelled') as $item) : ?> <?php foreach (array('Open for Bids','In Evaluation','Recommendation of Award','Awarded','Not Awarded','Cancelled') as $item) : ?>
<?php $sel = ''; ?> <?php $sel = ''; ?>
<?php if ($item == getValue($context, "juncture")) : ?> <?php if ($item == getValue($context, "juncture")) : ?>
<?php $sel = ' selected="selected"'; ?> <?php $sel = ' selected="selected"'; ?>
......
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