42 lines
2.0 KiB
Smarty
42 lines
2.0 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 clearfix">
|
|
{if $SHARED_USERS|@count gt 0 || $SHARED_GROUPS|@count gt 0}
|
|
{assign var="usersList" value="1"}
|
|
{/if}
|
|
<div class="title">
|
|
<div class="dashboardTitle" title="{vtranslate($WIDGET->getTitle(), $MODULE_NAME)}"><b>{if !$usersList}{vtranslate('LBL_MY',$MODULE_NAME)} {/if}{vtranslate($WIDGET->getTitle(), $MODULE_NAME)}</b></div>
|
|
</div>
|
|
{if $usersList}
|
|
<div class="userList">
|
|
<select class="select2 widgetFilter" name="type">
|
|
<option value="{$CURRENTUSER->getId()}" selected>{vtranslate('LBL_MINE',$MODULE_NAME)}</option>
|
|
{foreach key=USER_ID from=$SHARED_USERS item=USER_NAME}
|
|
<option value="{$USER_ID}">{$USER_NAME}</option>
|
|
{/foreach}
|
|
{foreach key=GROUP_ID from=$SHARED_GROUPS item=GROUP_NAME}
|
|
<option value="{$GROUP_ID}">{$GROUP_NAME}</option>
|
|
{/foreach}
|
|
<option value="all">{vtranslate('All', $MODULE_NAME)}</option>
|
|
</select>
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
<div name="history" class="dashboardWidgetContent" style="padding-top:15px;">
|
|
{include file="dashboards/CalendarActivitiesContents.tpl"|@vtemplate_path:$MODULE_NAME WIDGET=$WIDGET}
|
|
</div>
|
|
<div class="widgeticons dashBoardWidgetFooter">
|
|
<div class="footerIcons pull-right">
|
|
{include file="dashboards/DashboardFooterIcons.tpl"|@vtemplate_path:$MODULE_NAME}
|
|
</div>
|
|
</div> |