OwlCyberSecurity - MANAGER
Edit File: 2f9cac386f84e98262d53f0e9a983509b773b1fd.php
<div class="row"> <?php if($event->accounttype=='PAID'): ?> <div class="col-md-6"> <table class="table table-striped"> <tr> <th>ACCOUNT</th> <td><?php echo e($event->accounttype); ?></td> </tr> <tr> <th>EVENT CODE</th> <td><?php echo e($event->eventcode); ?></td> </tr> <tr> <th>EDIT CODE</th> <td><?php echo e($event->editcode); ?></td> </tr> <tr> <th>CATEGORY</th> <td><?php echo e($event->eventcategory); ?></td> </tr> <tr> <th>EVENT TYPE</th> <td><?php echo e($event->eventtype); ?></td> </tr> <tr> <th>EVENT DETAILS</th> <td><?php echo e($event->eventdetails); ?></td> </tr> <tr> <th>DURATION</th> <td><?php if($event->eventduration==NULL): ?> NOT APPLICABLE <?php else: ?> <?php echo e($event->eventduration); ?><?php endif; ?></td> </tr><tr> <th>START DATE</th> <td><?php echo e($event->eventstartdate); ?></td> </tr> <tr> <th>END DATE</th> <td><?php if($event->eventenddate==NULL): ?> NOT APPLICABLE <?php else: ?> <?php echo e($event->eventenddate); ?><?php endif; ?></td> </tr> <tr> <th>EVENT VENUE</th> <td><?php echo e($event->eventvenue); ?></td> </tr> <tr> <th>CITY/STATE</th> <td><?php echo e($event->city); ?>/<?php echo e($event->state); ?></td> </tr> <tr> <th>DESCRIPTION</th> <td><?php echo e($event->venuedesc); ?></td> </tr> <tr> <th>SCHEDULE</th> <td><?php if($event->programschedule==NULL): ?> NOT APPLICABLE <?php else: ?> <?php echo $event->programschedule; ?><?php endif; ?></td> </tr> <tr> <th>COMMENCEMENT</th> <td><?php echo e($event->commencement); ?></td> </tr> </table> </div> <div class="col-md-6"> <table class="table table-striped"> <tr> <th>RSVP</th> <td><?php echo e($event->RSVP); ?></td> </tr> <tr> <th>TOPIC</th> <td><?php if($event->eventtopic==NULL): ?> NOT APPLICABLE <?php else: ?> <?php echo $event->eventtopic; ?><?php endif; ?></td> </tr> <tr> <th>SPEAKERS</th> <td><?php if($event->guestspeaker==NULL): ?> NOT APPLICABLE <?php else: ?> <?php echo $event->guestspeaker; ?><?php endif; ?></td> </tr> <tr> <th>HONOUR</th> <td><?php if($event->guesthonours==NULL): ?> NOT APPLICABLE <?php else: ?> <?php echo $event->guesthonours; ?><?php endif; ?></td> </tr> <tr> <th>GATEPASS</th> <td><?php echo e($event->gatepass); ?></td> </tr> <tr> <th>FEE</th> <td><?php if($event->fee=='0'): ?> FREE <?php else: ?> N<?php echo e($event->fee); ?><?php endif; ?></td> </tr> <tr> <th>SEAT</th> <td><?php if($event->seat_reserve=='0'): ?> NOT SPECIFIED <?php else: ?> <?php echo e($event->seat_reserve); ?><?php endif; ?></td> </tr> <tr> <th>APPLICANTS</th> <td><?php if($event->applicants=='0'): ?> NONE YET <?php else: ?> <?php echo e($event->applicants); ?><?php endif; ?></td> </tr> <tr> <th>PAY. OPTION</th> <td><?php if($event->payment_option==NULL): ?> NOT SPECIFIED <?php else: ?> <?php echo e($event->payment_option); ?><?php endif; ?></td> </tr> <tr> <th>STATUS</th> <td><?php if($event->status=='0'): ?> ACTIVE <?php else: ?> <span style="color: red;">NOT-ACTIVE</span><?php endif; ?></td> </tr> <tr> <th>FLAGGED</th> <td><?php if($event->flagged=='0'): ?> NO <?php else: ?> <span style="color: red;">YES</span><?php endif; ?></td> </tr> <tr> <th>DISPLAY</th> <td><?php if($event->display=='1'): ?> YES <?php else: ?> <span style="color: red;">NO</span><?php endif; ?></td> </tr> <tr> <th>HYPE</th> <td><?php if($event->hype=='1'): ?> YES <?php else: ?> <span style="color: red;">NO</span><?php endif; ?></td> </tr> <tr> <th>PROMOTE</th> <td><?php if($event->promote=='1'): ?> YES <?php else: ?> <span style="color: red;">NO</span><?php endif; ?></td> </tr> <tr> <th>SMS ENABLED?</th> <td><?php if($event->enable_sms=='1'): ?> YES <?php else: ?> <span style="color: red;">NO</span><?php endif; ?></td> </tr> <tr> <th>SMS UNITS</th> <td><?php if($event->sms_unit!='0'): ?> <?php echo e($event->sms_unit); ?> <?php else: ?> <span style="color: red;">NONE</span><?php endif; ?></td> </tr> </table> </div> <?php else: ?> <div class="col-md-6"> <table class="table table-striped"> <tr> <th>ACCOUNT</th> <td><?php echo e($event->accounttype); ?></td> </tr> <tr> <th>EVENT CODE</th> <td><?php echo e($event->eventcode); ?></td> </tr> <tr> <th>EDIT CODE</th> <td><?php echo e($event->editcode); ?></td> </tr> <tr> <th>CATEGORY</th> <td><?php echo e($event->eventcategory); ?></td> </tr> <tr> <th>EVENT TYPE</th> <td><?php echo e($event->eventtype); ?></td> </tr> <tr> <th>EVENT DETAILS</th> <td><?php echo e($event->eventdetails); ?></td> </tr> <tr> <th>DURATION</th> <td><?php if($event->eventduration==NULL): ?> NOT APPLICABLE <?php else: ?> <?php echo e($event->eventduration); ?><?php endif; ?></td> </tr><tr> <th>START DATE</th> <td><?php echo e($event->eventstartdate); ?></td> </tr> <tr> <th>END DATE</th> <td><?php if($event->eventenddate==NULL): ?> NOT APPLICABLE <?php else: ?> <?php echo e($event->eventenddate); ?><?php endif; ?></td> </tr> <tr> <th>EVENT VENUE</th> <td><?php echo e($event->eventvenue); ?></td> </tr> <tr> <th>CITY/STATE</th> <td><?php echo e($event->city); ?>/<?php echo e($event->state); ?></td> </tr> <tr> <th>DESCRIPTION</th> <td><?php echo e($event->venuedesc); ?></td> </tr> </table> </div> <div class="col-md-6"> <table class="table table-striped"> <tr> <th>SCHEDULE</th> <td><?php if($event->programschedule==NULL): ?> NOT APPLICABLE <?php else: ?> <?php echo $event->programschedule; ?><?php endif; ?></td> </tr> <tr> <th>COMMENCEMENT</th> <td><?php echo e($event->commencement); ?></td> </tr> <tr> <th>RSVP</th> <td><?php echo e($event->RSVP); ?></td> </tr> <tr> <th>COLOR CODE</th> <td><?php if($event->colorcode==NULL): ?> NOT APPLICABLE <?php else: ?> <?php echo $event->colorcode; ?><?php endif; ?></td> </tr> <tr> <th>PERFORMANCE</th> <td><?php if($event->performance==NULL): ?> NOT APPLICABLE <?php else: ?> <?php echo $event->performance; ?><?php endif; ?></td> </tr> <tr> <th>STATUS</th> <td><?php if($event->status=='0'): ?> ACTIVE <?php else: ?> <span style="color: red;">NOT-ACTIVE</span><?php endif; ?></td> </tr> <tr> <th>FLAGGED</th> <td><?php if($event->flagged=='0'): ?> NO <?php else: ?> <span style="color: red;">YES</span><?php endif; ?></td> </tr> <tr> <th>DISPLAY</th> <td><?php if($event->display=='1'): ?> YES <?php else: ?> <span style="color: red;">NO</span><?php endif; ?></td> </tr> <tr> <th>HYPE</th> <td><?php if($event->hype=='1'): ?> YES <?php else: ?> <span style="color: red;">NO</span><?php endif; ?></td> </tr> <tr> <th>PROMOTE</th> <td><?php if($event->promote=='1'): ?> YES <?php else: ?> <span style="color: red;">NO</span><?php endif; ?></td> </tr> </table> </div> <?php endif; ?> </div>