dynamicweb/datacenterlight/templates/datacenterlight/order_detail.html

25 lines
910 B
HTML
Raw Normal View History

2017-09-25 19:34:38 +00:00
{% extends "hosting/order_detail.html" %}
2017-09-25 21:51:20 +00:00
{% load i18n %}
{% block navbar %}
{% include "datacenterlight/includes/_navbar.html" %}
2017-09-25 21:48:19 +00:00
{% endblock navbar %}
{% block submit_btn %}
2017-10-01 23:34:32 +00:00
<form id="virtual_machine_create_form" action="" method="POST">
2017-09-25 21:59:38 +00:00
{% 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">
2017-10-01 23:34:32 +00:00
<button class="btn choice-btn" id="btn-create-vm"
data-toggle="modal" data-target="#createvm-modal">
{% trans "Place order" %}
</button>
2017-09-25 21:59:38 +00:00
</div>
</div>
2017-09-25 21:48:19 +00:00
</form>
2017-09-28 12:53:48 +00:00
{% endblock submit_btn %}
2017-06-22 07:53:13 +00:00