21 lines
780 B
HTML
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 %}
|
|
|