bebeboutik/modules/invite/invite-program.tpl

71 lines
2.4 KiB
Smarty
Raw Normal View History

2016-01-04 12:49:26 +01:00
{capture name=path}<a href="{$link->getPageLink('my-account.php', TRUE)}">{l s='My account' mod='invite'}</a><span class="navigation-pipe">{$navigationPipe}</span>{l s='Referral Program' mod='invite'}{/capture}
{include file="$tpl_dir./breadcrumb.tpl"}
<h1>{l s='Referral program' mod='invite'}</h1>
{if $error}
<p class="error">
{if $error == 'conditions not valided'}
{l s='You need to agree to the conditions of the referral program!' mod='invite'}
{elseif $error == 'email invalid'}
{l s='At least one e-mail address is invalid!' mod='invite'}
{elseif $error == 'email exists'}
{l s='Someone with this e-mail address has already been sponsored!' mod='invite'}: {foreach from=$mails_exists item=mail}{$mail} {/foreach}
{elseif $error == 'no revive checked'}
{l s='Please mark at least one checkbox' mod='invite'}
{elseif $error == 'cannot add friends'}
{l s='Cannot add friends to database' mod='invite'}
{/if}
</p>
{/if}
{if $invitation_sent}
<p class="success">
{if $nbInvitation > 1}
{l s='E-mails have been sent to your friends!' mod='invite'}
{else}
{l s='An e-mail has been sent to your friend!' mod='invite'}
{/if}
</p>
{/if}
{if $revive_sent}
<p class="success">
{if $nbRevive > 1}
{l s='Reminder e-mails have been sent to your friends!' mod='invite'}
{else}
{l s='A reminder e-mail has been sent to your friend!' mod='invite'}
{/if}
</p>
{/if}
{if $canSendInvitations && $showInviteLink}
<div id="invite_link">
<p>
<label>{l s='Share your referral link with your friends:' mod='invite'}</label>
<input type="text" value="{$invitelink|escape:html:'UTF-8'}" onmouseup="this.select();" readonly="true" />
</p>
</div>
{/if}
<ul class="idTabs">
<li><a href="#idTab1" {if $activeTab=='sponsor'}class="selected"{/if}>{l s='Sponsor my friends' mod='invite'}</a></li>
<li><a href="#idTab2" {if $activeTab=='pending'}class="selected"{/if}>{l s='Pending friends' mod='invite'}</a></li>
<li><a href="#idTab3" {if $activeTab=='subscribed'}class="selected"{/if}>{l s='Friends I sponsored' mod='invite'}</a></li>
</ul>
<div class="sheets">
<div id="idTab1">
{include file="tab1.tpl"}
</div>
<div id="idTab2">
{include file="tab2.tpl"}
</div>
<div id="idTab3">
{include file="tab3.tpl"}
</div>
</div>
<ul class="footer_links">
<li><a href="{$link->getPageLink('my-account.php', TRUE)}">{l s='Back to Your Account' mod='invite'}</a></li>
</ul>