<# if( data.currency_selector || data.subscription_selector ) { #>
<# if( data.currency_selector ) { #> <# if( Object.keys( data.currency_options_assoc ).length >= 3 ) { #> <# } else { #>
<# _.each( data.currency_options_assoc, function( label, value ) { #> {{ label }} <# }) #>
<# } #> <# } #> <# if( data.subscription_selector ) { #> <# if( Object.keys( data.frequency_options_assoc ).length >= 3 ) { #> <# } else { #>
<# _.each( data.frequency_options_assoc, function( label, value ) { #> {{ label }} <# }) #>
<# } #> <# } #>
<# } #>
{{ data.lang.pricing_plan_title }}
{{ data.selected_currency === null ? '?' : payment_page_get_currency_symbol( payment_page_get_user_locale(), data.selected_currency ) }}
<# if( data.payment_methods_counts > 1 ) { #>
<# if( data.lang.payment_information !== '' ) { #> {{ data.lang.payment_method }} <# } #>
<# _.each( data.payment_methods_map, function( payment_methods, payment_gateway ) { #> <# _.each( payment_methods, function( payment_method ) { #>
{{ payment_method.name }}
<# }) #> <# }) #>
<# } #>
{{{ PaymentPage.Template.get( 'payment-form', 'template/payment-information.html', data ) }}}
...