/
var
/
www
/
vhosts
/
ihelp.ro
/
httpdocs
/
templates
/
Admin
/
ProposedCauses
/
/var/www/vhosts/ihelp.ro/httpdocs/templates/Admin/ProposedCauses
mkdir
upload
Name
Size
Mode
Actions
index.php
4124
0644
edit
dl
rm
view.php
3224
0644
edit
dl
rm
Edit:
/var/www/vhosts/ihelp.ro/httpdocs/templates/Admin/ProposedCauses/view.php
(3224B)
<!-- Content Header (Page header) --> <section class="content-header"> <div class="container-fluid"> <div class="row mb-2"> <div class="col-lg-12"> <h1 class="float-left"> <?php echo '#' . $proposedCause->id . ' ' . $proposedCause->cause_name; ?> </h1> <ol class="breadcrumb float-right"> <li class="breadcrumb-item active" aria-current="page"> <a class="" href="<?php echo $this->Url->build(['action' => 'index']); ?>"><i class="fas fa-home"></i> <?php echo __('Home'); ?></a></li> </ol> </div> </div> </div><!-- /.container-fluid --> </section> <!-- Main content --> <section class="content"> <div class="container-fluid"> <div class="row"> <div class="col-lg-8"> <div class="card"> <div class="card-body table-responsive p-0"> <div class="text"> <blockquote> <?php echo $this->Text->autoParagraph(h($proposedCause->description)); ?> </blockquote> </div> </div> </div> </div> <div class="col-lg-4"> <div class="card"> <div class="card-body table-responsive p-0"> <table class="table table-hover text-nowrap"> <tr> <th><?php echo __('Full Name') ?></th> <td><?php echo h($proposedCause->full_name); ?></td> </tr> <tr> <th><?php echo __('Email') ?></th> <td><?php echo h($proposedCause->email); ?></td> </tr> <tr> <th><?php echo __('Phone') ?></th> <td><?php echo $this->FormatNumber->formatPhone($proposedCause->phone); ?></td> </tr> <tr> <th><?php echo __('Donation amount') ?></th> <td><?php echo $proposedCause->donation_amount ; ?></td> </tr> <tr> <th><?php echo __('Created') ?></th> <td><?php echo h($proposedCause->created); ?></td> </tr> <tr> <th><?php echo __('Is contacted') ?></th> <td> <i class="fa <?php echo ($proposedCause->is_contacted) ? 'fa-check-circle text-success ' : 'fa-times-circle text-danger'; ?>"></i> </td> </tr> </table> </div> <!-- /.box-body --> </div> <!-- /.box --> </div> </div> </div> </section>
Save
cmd:
run