Handle generic payment separately in order_detail.html
This commit is contained in:
		
					parent
					
						
							
								e94ecfe52c
							
						
					
				
			
			
				commit
				
					
						bce47032ab
					
				
			
		
					 1 changed files with 78 additions and 49 deletions
				
			
		| 
						 | 
				
			
			@ -47,6 +47,26 @@
 | 
			
		|||
            <hr>
 | 
			
		||||
            <div>
 | 
			
		||||
                <h4>{% trans "Order summary" %}</h4>
 | 
			
		||||
                    {% if generic_payment_details %}
 | 
			
		||||
                        <div class="row">
 | 
			
		||||
                            <div class="col-sm-6">
 | 
			
		||||
                                <p>
 | 
			
		||||
                                    <span>{% trans "Amount" %}: </span>
 | 
			
		||||
                                    <strong class="pull-right">CHF {{generic_payment_details.amount|floatformat:2|intcomma}}</strong>
 | 
			
		||||
                                </p>
 | 
			
		||||
                                <p>
 | 
			
		||||
                                    <span>{% trans "Description" %}: </span>
 | 
			
		||||
                                    <strong class="pull-right">{{generic_payment_details.description}}</strong>
 | 
			
		||||
                                </p>
 | 
			
		||||
                                {% if generic_payment_details.recurring %}
 | 
			
		||||
                                    <p>
 | 
			
		||||
                                        <span>{% trans "Recurring" %}: </span>
 | 
			
		||||
                                        <strong class="pull-right">Yes</strong>
 | 
			
		||||
                                    </p>
 | 
			
		||||
                                {% endif %}
 | 
			
		||||
                            </div>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    {% else %}
 | 
			
		||||
                        <p>
 | 
			
		||||
                            <strong>{% trans "Product" %}:</strong> 
 | 
			
		||||
                            {{ request.session.template.name }}
 | 
			
		||||
| 
						 | 
				
			
			@ -102,6 +122,7 @@
 | 
			
		|||
                                </p>
 | 
			
		||||
                            </div>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    {% endif %}
 | 
			
		||||
            </div>
 | 
			
		||||
            <hr class="thin-hr">
 | 
			
		||||
        </div>
 | 
			
		||||
| 
						 | 
				
			
			@ -109,7 +130,15 @@
 | 
			
		|||
            {% csrf_token %}
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-8">
 | 
			
		||||
                    {% if generic_payment_details %}
 | 
			
		||||
                        {% if generic_payment_details.recurring %}
 | 
			
		||||
                            <div class="dcl-place-order-text">{% blocktrans with total_price=generic_payment_details.amount|floatformat:2|intcomma %}By clicking "Place order" this plan will charge your credit card account with {{total_price}} CHF/month{% endblocktrans %}.</div>
 | 
			
		||||
                        {% else %}
 | 
			
		||||
                            <div class="dcl-place-order-text">{% blocktrans with total_price=generic_payment_details.amount|floatformat:2|intcomma %}By clicking "Place order" this payment will charge your credit card account with a one time amount of {{total_price}} CHF{% endblocktrans %}.</div>
 | 
			
		||||
                        {% endif %}
 | 
			
		||||
                    {% else %}
 | 
			
		||||
                        <div class="dcl-place-order-text">{% blocktrans with vm_total_price=vm.total_price|floatformat:2|intcomma %}By clicking "Place order" this plan will charge your credit card account with {{vm_total_price}} CHF/month{% endblocktrans %}.</div>
 | 
			
		||||
                    {% endif %}
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-4 order-confirm-btn text-right">
 | 
			
		||||
                    <button class="btn choice-btn" id="btn-create-vm" data-toggle="modal" data-target="#createvm-modal">
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue