Files
CRM/layouts/v7/modules/Vtiger/HelpDeskSummaryWidgetContents.tpl
BACHIR SOULDI 2794e62571 first commit
2025-09-28 08:49:37 +01:00

47 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.
*
********************************************************************************/
-->*}
{strip}
{foreach item=RELATED_RECORD from=$RELATED_RECORDS}
<div class="recentActivitiesContainer">
<ul class="unstyled">
<li>
<div>
<div class="textOverflowEllipsis width27em">
{vtranslate('Title', $MODULE)} :
<span>
<a href="{$RELATED_RECORD->getDetailViewUrl()}" title="{$RELATED_RECORD->getDisplayValue('ticket_title')}" id="{$MODULE}_{$RELATED_MODULE}_Related_Record_{$RELATED_RECORD->get('id')}">
{$RELATED_RECORD->getDisplayValue('ticket_title')}
</a>
</span>
</div>
<div>{vtranslate('LBL_TICKET_PRIORITY',$MODULE)} : <strong> {$RELATED_RECORD->getDisplayValue('ticketpriorities')}</strong> </div>
{assign var=DESCRIPTION value="{$RELATED_RECORD->getDescriptionValue()}"}
{if !empty($DESCRIPTION)}
<div class="row">
<span class="col-lg-8 textOverflowEllipsis width27em">{vtranslate('LBL_DESCRIPTION',$MODULE)} : {$DESCRIPTION}</span>
<span class="col-lg-3"><a href="{$RELATED_RECORD->getDetailViewUrl()}">{vtranslate('LBL_MORE',$MODULE)}</a></span>
</div>
{/if}
</div>
</li>
</ul>
</div>
{/foreach}
{assign var=NUMBER_OF_RECORDS value=count($RELATED_RECORDS)}
{if $NUMBER_OF_RECORDS eq 5}
<div class="row">
<div class="pull-right">
<a class="moreRecentTickets cursorPointer">{vtranslate('LBL_MORE',$MODULE_NAME)}</a>
</div>
</div>
{/if}
{/strip}