43 lines
1.8 KiB
Smarty
43 lines
1.8 KiB
Smarty
{*<!--
|
|
/*+***********************************************************************************
|
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.1
|
|
* ("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}
|
|
<div class="col-sm-12 col-xs-12 module-action-bar clearfix coloredBorderTop">
|
|
<div class="module-action-content clearfix">
|
|
<div class="col-lg-4 col-md-4">
|
|
<h4 title="{strtoupper(vtranslate($MODULE, $MODULE))}" class="module-title pull-left text-uppercase"> {strtoupper(vtranslate($MODULE, $MODULE))} </h4>
|
|
</div>
|
|
<div class="col-lg-8 col-md-8">
|
|
<div class="navbar-right">
|
|
<ul class="nav navbar-nav">
|
|
<li>
|
|
{if !($PASSWORD_STATUS)}
|
|
<button class="btn btn-default module-buttons" type="button" id="logintoMarketPlace">
|
|
<div class="fa fa-sign-in" aria-hidden="true"></div>
|
|
Login to marketplace
|
|
</button>
|
|
{else}
|
|
<button class="btn btn-default module-buttons" type="button" id="{if !empty($CUSTOMER_PROFILE['CustomerCardId'])}updateCardDetails{else}setUpCardDetails{/if}">
|
|
<div class="fa fa-credit-card" aria-hidden="true"></div>
|
|
{if !empty($CUSTOMER_PROFILE['CustomerCardId'])}
|
|
{vtranslate('LBL_UPDATE_CARD_DETAILS', $QUALIFIED_MODULE)}
|
|
{else}
|
|
{vtranslate('LBL_SETUP_CARD_DETAILS', $QUALIFIED_MODULE)}
|
|
{/if}
|
|
</button>
|
|
{/if}
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{/strip} |