40 lines
1.6 KiB
Smarty
40 lines
1.6 KiB
Smarty
{*<!--
|
|
/*********************************************************************************
|
|
** 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.
|
|
*
|
|
********************************************************************************/
|
|
-->*}
|
|
<div class="dashboardWidgetHeader">
|
|
<table width="100%" cellspacing="0" cellpadding="0">
|
|
<thead>
|
|
<tr>
|
|
<th class="span4">
|
|
<div class="dashboardTitle" title="{vtranslate($WIDGET->getTitle(), $MODULE_NAME)}"><b> {vtranslate($WIDGET->getTitle())}</b></div>
|
|
</th>
|
|
<th class="span2">
|
|
<div>
|
|
<select class="widgetFilter" id="historyType" name="type" style='width:100px;margin-bottom:0px'>
|
|
<option value="all" >{vtranslate('LBL_ALL')}</option>
|
|
{if $COMMENTS_MODULE_MODEL->isPermitted('DetailView')}<option value="comments" >{vtranslate('LBL_COMMENTS')}</option>{/if}
|
|
<option value="updates" >{vtranslate('LBL_UPDATES')}</option>
|
|
</select>
|
|
</div>
|
|
</th>
|
|
<th class="refresh span1" align="right">
|
|
<span style="position:relative;"></span>
|
|
</th>
|
|
<th class="widgeticons span5" align="right">
|
|
{include file="dashboards/DashboardHeaderIcons.tpl"|@vtemplate_path:$MODULE_NAME}
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
</div>
|
|
<div class="dashboardWidgetContent">
|
|
{include file="dashboards/HistoryContents.tpl"|@vtemplate_path:$MODULE_NAME}
|
|
</div> |