File: /home/slfopp7cb1df/public_html/conradinvestmentgroup.com/pm/app/Views/leads/proposals/index.php
<div class="card border-top-0 rounded-top-0">
<div class="tab-title clearfix">
<h4><?php echo app_lang('proposals'); ?></h4>
<div class="title-button-group">
<?php echo modal_anchor(get_uri("proposals/modal_form"), "<i data-feather='plus-circle' class='icon-16'></i> " . app_lang('add_proposal'), array("class" => "btn btn-default", "data-post-client_id" => $client_id, "title" => app_lang('add_proposal'))); ?>
</div>
</div>
<div class="table-responsive">
<table id="proposal-table" class="display" width="100%">
<tfoot>
<tr>
<th colspan="4" class="text-right"><?php echo app_lang("total") ?>:</th>
<th class="text-right" data-current-page="4"></th>
<th> </th>
</tr>
<tr data-section="all_pages">
<th colspan="4" class="text-right"><?php echo app_lang("total_of_all_pages") ?>:</th>
<th class="text-right" data-all-page="4"></th>
<th> </th>
</tr>
</tfoot>
</table>
</div>
</div>
<script type="text/javascript">
$(document).ready(function () {
var currencySymbol = "<?php echo $lead_info->currency_symbol; ?>";
var showCommentOption = false;
if ("<?php echo get_setting("enable_comments_on_proposals") == "1" ?>") {
showCommentOption = true;
}
$("#proposal-table").appTable({
source: '<?php echo_uri("proposals/proposal_list_data_of_client/" . $client_id) ?>',
order: [[0, "desc"]],
filterDropdown: [<?php echo $custom_field_filters; ?>],
columns: [
{title: "<?php echo app_lang("proposal") ?>", "class": "w15p all"},
{visible: false, searchable: false},
{visible: false, searchable: false},
{title: "<?php echo app_lang("proposal_date") ?>", "iDataSort": 2, "class": "w10p all"},
{visible: false, searchable: false},
{title: "<?php echo app_lang("valid_until") ?>", "iDataSort": 4, "class": "w10p"},
{title: "<?php echo app_lang("last_email_seen") ?>", "class": "w15p text-center"},
{title: "<?php echo app_lang("last_preview_seen") ?>", "class": "w15p text-center"},
{title: "<?php echo app_lang("amount") ?>", "class": "text-right w10p"},
{title: "<?php echo app_lang("status") ?>", "class": "text-center w10p"},
{visible: showCommentOption, title: "<?php echo app_lang("comments") ?>", "class": "text-center w10p"}
<?php echo $custom_field_headers; ?>,
{visible: false}
],
summation: [{column: 8, dataType: 'currency', currencySymbol: currencySymbol}]
});
});
</script>