38 lines
1.5 KiB
Smarty
Executable File
38 lines
1.5 KiB
Smarty
Executable File
{if $pendingFriends AND $pendingFriends|@count > 0}
|
|
<p>
|
|
{if $reward_sponsor_on}
|
|
{l s='These friends have not yet placed an order on this Website since you sponsored them,' mod='invite'}
|
|
{else}
|
|
{l s='These friends have not yet registered on this Website since you sponsored them,' mod='invite'}
|
|
{/if}
|
|
{l s='but you can try again! To do so, mark the checkboxes of the friend(s) you want to remind, then click on the button "Remind my friend(s)"' mod='invite'}
|
|
</p>
|
|
<form method="post" action="{$base_dir_ssl}modules/invite/invite-program.php" class="std">
|
|
<table class="std">
|
|
<thead>
|
|
<tr>
|
|
<th class="first_item"> </th>
|
|
<th class="item">{l s='E-mail' mod='invite'}</th>
|
|
<th class="last_item"><b>{l s='Last invitation' mod='invite'}</b></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{foreach from=$pendingFriends item=pendingFriend name=myLoop}
|
|
<tr>
|
|
<td>
|
|
<input type="checkbox" name="friendChecked[{$pendingFriend.id_invite}]" id="friendChecked[{$pendingFriend.id_invite}]" value="1" />
|
|
</td>
|
|
<td><label for="friendChecked[{$pendingFriend.id_invite}]">{$pendingFriend.email}</label></td>
|
|
<td>{dateFormat date=$pendingFriend.date_upd full=1}</td>
|
|
</tr>
|
|
{/foreach}
|
|
</tbody>
|
|
</table>
|
|
<p class="submit">
|
|
<input type="submit" value="{l s='Remind my friend(s)' mod='invite'}" name="revive" id="revive" class="button_large" />
|
|
</p>
|
|
</form>
|
|
{else}
|
|
<p class="warning">{l s='You don\'t have any pending sponsorship at the moment.' mod='invite'}</p>
|
|
{/if}
|