Newer
Older
{*<!--
/*********************************************************************************
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
* The Original Code is: vtiger CRM Open Source
* The Initial Developer of the Original Code is vtiger.
* Portions created by vtiger are Copyright (C) vtiger.
* All Rights Reserved.
*
********************************************************************************/
-->*}
{strip}
<div class="listViewPageDiv">
<div class="reportHeader">
<div class="row">
<div class="col-lg-4 detailViewButtoncontainer">
<div class="btn-toolbar">
<div class="btn-group">
{foreach item=DETAILVIEW_LINK from=$DETAILVIEW_ACTIONS}
{assign var=LINK_URL value=$DETAILVIEW_LINK->getUrl()}
{assign var=LINK_NAME value=$DETAILVIEW_LINK->getLabel()}
{assign var=LINK_ICON_CLASS value=$DETAILVIEW_LINK->get('linkiconclass')}
{if $LINK_ICON_CLASS eq 'vtGlyph vticon-attach'}
<div class="btn-group">
{/if}
<button {if $LINK_URL} onclick='window.location.href = "{$LINK_URL}"' {/if} type="button"
class="cursorPointer btn btn-default {$DETAILVIEW_LINK->get('customclass')}
{if $LINK_ICON_CLASS eq 'vtGlyph vticon-attach' && php7_count($DASHBOARD_TABS) gt 1} dropdown-toggle{/if}"
title="{if $LINK_ICON_CLASS eq 'vtGlyph vticon-attach'}
{if $REPORT_MODEL->isPinnedToDashboard()}{vtranslate('LBL_UNPIN_CHART_FROM_DASHBOARD', $MODULE)}{else}{vtranslate('LBL_PIN_CHART_TO_DASHBOARD', $MODULE)}{/if}
{else}{$DETAILVIEW_LINK->get('linktitle')}{/if}" {if $LINK_ICON_CLASS eq 'vtGlyph vticon-attach' && php7_count($DASHBOARD_TABS) gt 1 }data-toggle="dropdown"{/if}
{if $LINK_ICON_CLASS eq 'vtGlyph vticon-attach'}data-dashboard-tab-count='{php7_count($DASHBOARD_TABS)}'{/if} >
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{if $LINK_NAME} {$LINK_NAME}{/if}
{if $LINK_ICON_CLASS}
{if $LINK_ICON_CLASS eq 'icon-pencil'} {/if}
<i class="fa {if $LINK_ICON_CLASS eq 'icon-pencil'}fa-pencil{elseif $LINK_ICON_CLASS eq 'vtGlyph vticon-attach'}
{if $REPORT_MODEL->isPinnedToDashboard()}vicon-unpin{else}vicon-pin{/if}{/if}" style="font-size: 13px;"></i>
{/if}
</button>
{if $LINK_ICON_CLASS eq 'vtGlyph vticon-attach'}
<ul class='dropdown-menu dashBoardTabMenu'>
<li class="dropdown-header popover-title">
{vtranslate('LBL_DASHBOARD',$MODULE)}
</li>
{foreach from=$DASHBOARD_TABS item=TAB_INFO}
<li class='dashBoardTab' data-tab-id='{$TAB_INFO.id}'>
<a href='javascript:void(0)'> {$TAB_INFO.tabname}</a>
</li>
{/foreach}
</ul>
{/if}
{if $LINK_ICON_CLASS eq 'vtGlyph vticon-attach'}
</div>
{/if}
{/foreach}
</div>
</div>
</div>
<div class="col-lg-4 textAlignCenter">
<h3 class="marginTop0px">{$REPORT_MODEL->getName()}</h3>
{if $REPORT_MODEL->getReportType() == 'tabular' || $REPORT_MODEL->getReportType() == 'summary'}
<div id="noOfRecords">{vtranslate('LBL_NO_OF_RECORDS',$MODULE)} <span id="countValue">{$COUNT}</span></div>
{if $COUNT > $REPORT_LIMIT}
<span class="redColor" id="moreRecordsText"> ({vtranslate('LBL_MORE_RECORDS_TXT',$MODULE)})</span>
{else}
<span class="redColor hide" id="moreRecordsText"> ({vtranslate('LBL_MORE_RECORDS_TXT',$MODULE)})</span>
{/if}
{/if}
</div>
<div class='col-lg-4 detailViewButtoncontainer'>
<span class="pull-right">
<div class="btn-toolbar">
<div class="btn-group">
{foreach item=DETAILVIEW_LINK from=$DETAILVIEW_LINKS}
{assign var=LINKNAME value=$DETAILVIEW_LINK->getLabel()}

Apparao G
committed
<button class="btn btn-default reportActions" name="{$LINKNAME}" data-href="{$DETAILVIEW_LINK->getUrl()}&source={$REPORT_MODEL->getReportType()}">
{$LINKNAME}
</button>
{/foreach}
</div>
</div>
</span>
</div>
</div>
</div>
</div>