[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
14082024
/
Data
/
htdocs
/
htdocs
/
ojs
/
248
/
templates
/
user
/
[
Home
]
File: gifts.tpl
{** * templates/user/gifts.tpl * * Copyright (c) 2013-2019 Simon Fraser University * Copyright (c) 2003-2019 John Willinsky * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING. * * User gifts management page. *} {strip} {assign var="pageTitle" value="gifts.myGifts"} {include file="common/header.tpl"} {/strip} {if $acceptGiftSubscriptionPayments} <h3>{translate key="gifts.subscriptions"}</h3> <p>{translate key="gifts.subscriptionsDescription"}</p> <p><a class="action" href="{url page="gifts" op="purchaseGiftSubscription"}">{translate key="gifts.purchaseGiftSubscription"}</a></p> <br /> <table width="100%" class="info"> {iterate from=giftSubscriptions item=gift} <tr valign="top"> <td width="65%">{$gift->getGiftName()|escape}</td> <td width="15%"> {assign var="giftStatus" value=$gift->getStatus()} {if $giftStatus == $smarty.const.GIFT_STATUS_NOT_REDEEMED} <span class="disabled">{translate key="gifts.status.notRedeemed"}</span> {elseif $giftStatus == $smarty.const.GIFT_STATUS_REDEEMED} <span class="disabled">{translate key="gifts.status.redeemed"}</span> {/if} </td> <td width="20%" align="right"> {if $giftStatus == $smarty.const.GIFT_STATUS_NOT_REDEEMED} <a class="action" href="{url op="redeemGift" path=$gift->getId()}">{translate key="gifts.redeemGift"}</a> {elseif $giftStatus == $smarty.const.GIFT_STATUS_REDEEMED} {$gift->getDatetimeRedeemed()|escape} {else} {/if} </td> </tr> <tr valign="top"> <td colspan="3" class="separator"> </td> </tr> {/iterate} {if $giftSubscriptions->wasEmpty()} <tr valign="top"> <td colspan="3" class="separator"> </td> </tr> <tr valign="top"> <td colspan="3" class="nodata">{translate key="gifts.noSubscriptions"}</td> </tr> <tr valign="top"> <td colspan="3" class="separator"> </td> </tr> {/if} </table> {/if} {include file="common/footer.tpl"}