vtenext/Smarty/templates/pendingActivities.tpl
2021-04-28 20:10:26 +02:00

62 lines
3.4 KiB
Smarty

{*
/*************************************
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
* SPDX-License-Identifier: AGPL-3.0-only
************************************/
*}
{if $ACTIVITIES.1.noofactivities > 0}
<div id="todaypending" style="display:block;">
{assign var=label value=$ACTIVITIES.1.Title.0}
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="small">
<tr>
<td><img src="{'pending_left.gif'|resourcever}"></td>
<td width="100%" background="{'pendingEvents.gif'|resourcever}" valign="bottom"
style="background-repeat:repeat-x;">
<b class="fontBold">{$APP.$label}&nbsp;{$APP.LBL_PENDING_EVENTS}
&nbsp;({$ACTIVITIES.1.noofactivities})</b><br/>
<b>{$APP.LBL_SHOW}</b>
{$APP.LBL_TODAY}&nbsp;&nbsp;|&nbsp;&nbsp;<a
href="index.php?action=ListView&module=Calendar&parenttab=My%20Home%20Page&viewname={$VIEWID}&from_homepage=pending_activities">{$APP.LBL_ALL}</a>
</td>
<td><img src="{'pending_right.gif'|resourcever}"></td>
</tr>
<tr>
<td colspan="3" bgcolor="#FEF7C1"
style="border-left:2px solid #A6A4A5;border-right:2px solid #A6A4A5;border-bottom:2px solid #A6A4A5;">
<div id="pendingActivitiesEntry" style="overflow-y:auto;overflow-x:hidden;height:150px;width:100%">
<table width="100%" border="0" cellpadding="5" cellspacing="0">
<tr>
<td style="border-bottom:1px dotted #dddddd;" colspan=4 align="right" valign=top>
&nbsp;
</td>
</tr>
{if $ACTIVITIES.1.noofactivities != 0}
{foreach item=entries name=entryloop from=$ACTIVITIES.1.Entries}
<tr>
<td style="border-bottom:1px dotted #dddddd;" align="right"
width="20">{math equation="x+1" x=$smarty.foreach.entryloop.index}</td>
<td style="border-bottom:1px dotted #dddddd;" align="right"
width="20">{$entries.IMAGE}</td>
<td style="border-bottom:1px dotted #dddddd;" align="left" valign="middle"
colspan="2" width="85%"><b
class="style_Gray">{$entries.0}</b>{*<br />{$entries.ACCOUNT_NAME*}
</td>
</tr>
{/foreach}
{else}
<tr>
<td style="border-bottom:1px dotted #dddddd;" align="left" valign="middle"
colspan="2" width="85%"><b>{$APP.LBL_NONE_SCHEDULED}</b></td>
</tr>
{/if}
</table>
</div>
</td>
</tr>
</table>
<br>
</div>
{/if}