<div class="container"> <div class="row"> <div class="col-sm-8 col-sm-offset-2"> <?php echo "<a href='checkouts.php'><span class='glyphicon glyphicon-chevron-left'></span> Back to Checkouts</a>"; ?> <br /><br /> <div class="panel panel-default"> <div class="panel-heading text-center">Checkout Details</div> <div class="panel-body text-center"> <p> <?php printf("<strong>Checkout ID:</strong> %s<br /><br />", $checkout->getID()); printf("<strong>Description:</strong> %s<br /><br />", $checkout->getDescription()); if (!empty($checkout->getDRNumber())) { echo "<strong>DR:</strong> " . $checkout->getDRNumber() . "<br /><br />"; } if (!empty($checkout->getLocation())) { echo "<strong>Location:</strong> " . $checkout->getLocation() . "<br /><br />"; } $personName = getPersonName($checkout->getPerson()); printf("<strong>Person:</strong> %s<br /><br />", $personName); $co_start = new DateTime($checkout->getStart()); $co_end = new DateTime($checkout->getEnd()); printf("<strong>Start Time:</strong> %s<br /><br />", $co_start->format('m-d-y g:iA')); printf("<strong>End Time:</strong> %s<br /><br />", $co_end->format('m-d-y g:iA')); if ($checkout->getReturned()) { $retDate = new DateTime($checkout->getReturned()); echo "<strong>Returned:</strong> " . $retDate->format('m-d-y g:iA') . "<br /><br />"; }
<textarea class="form-control" name="description" rows="3"><?php echo $co->getDescription(); ?> </textarea> </div> <div class="form-group"> <!-- LOCATION --> <label class="control-label" for="location">Location:</label> <input type="text" class="form-control" name="location" value="<?php echo $co->getLocation(); ?> "> </div> <div class="form-group"> <!-- DR NUMBER --> <label class="control-label" for="dr_number">DR Number:</label> <input type="text" class="form-control" name="dr_number" value="<?php echo $co->getDRNumber(); ?> "> </div> <div class="alert alert-warning"> Changing the date of a checkout may change what gear is available for checkout. </div> <!-- new dateTime input --> <div class="form-group"> <label class="control-label" for="startDateTime">Check Out:</label> <input class="form-control" name="startDateTime" type="text" data-field="datetime" value="<?php echo $co_start->format('d-m-Y H:i'); ?> " readonly> </div>