dynamicweb/datacenterlight/templates/datacenterlight/order_detail.html
Arvind Tiwari b65bc3f1f5 merge master
2017-09-28 18:23:48 +05:30

21 lines
780 B
HTML

{% extends "hosting/order_detail.html" %}
{% load i18n %}
{% block navbar %}
{% include "datacenterlight/includes/_navbar.html" %}
{% endblock navbar %}
{% block submit_btn %}
<form action="" method="POST">
{% csrf_token %}
<div class="row">
<div class="col-sm-8">
<div class="dcl-place-order-text">{% blocktrans with vm_price=request.session.specs.price %}By clicking "Place order" this plan will charge your credit card account with the fee of {{ vm_price }}CHF/month{% endblocktrans %}.</div>
</div>
<div class="col-sm-4 order-confirm-btn text-right">
<button type="submit" class="btn choice-btn">{% trans "Place order" %}</button>
</div>
</div>
</form>
{% endblock submit_btn %}