2016-03-23 18:39:41 +01:00
|
|
|
<div class="modal-header">
|
|
|
|
<img ng-src="{{logoBlack.custom_asset_file_attributes.attachment_url}}" alt="{{logo.custom_asset_file_attributes.attachment}}" class="modal-logo"/>
|
|
|
|
<h1 translate>{{ 'subscription_confirmation' }}</h1>
|
|
|
|
</div>
|
|
|
|
<div class="modal-body">
|
2016-07-08 17:24:51 +02:00
|
|
|
<h3 ng-if="walletAmount > 0 && price > 0">{{ 'you_have_amount_in_wallet' | translate:{ amount: walletAmount, currency: currencySymbol } }}</h3>
|
|
|
|
<p ng-if="walletAmount > 0 && price > 0 && amount === 0" class="text-italic">{{'wallet_pay_reservation' | translate}}</p>
|
|
|
|
<p ng-if="walletAmount > 0 && amount !== 0" class="text-italic">{{'credit_amount_for_pay_reservation' | translate:{ amount: amount, currency: currencySymbol } }}</p>
|
|
|
|
|
2016-03-23 18:39:41 +01:00
|
|
|
<p>{{ 'here_is_the_NAME_subscription_summary' | translate:{NAME:member.name} }}</p>
|
|
|
|
<p>{{ plan | humanReadablePlanName }}</p>
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
2016-07-08 17:24:51 +02:00
|
|
|
<button class="btn btn-info" ng-click="ok()" ng-disabled="attempting">{{validButtonName}}</button>
|
2016-03-23 18:39:41 +01:00
|
|
|
<button class="btn btn-default" ng-click="cancel()" translate>{{ 'cancel' }}</button>
|
|
|
|
</div>
|