dynamicweb/hosting/templates/hosting/create_virtual_machine.html

27 lines
1 KiB
HTML
Raw Normal View History

{% extends "hosting/base_short.html" %}
{% load staticfiles bootstrap3 i18n cms_tags %}
2017-06-09 18:55:45 +00:00
2017-09-14 19:19:39 +00:00
{% block content %}
2017-09-15 14:33:52 +00:00
<div class="dashboard-container create-vm-container">
2017-09-14 19:19:39 +00:00
<div class="row">
2017-09-18 19:47:15 +00:00
<div class="col-sm-5">
2017-09-14 19:19:39 +00:00
<div class="dashboard-container-head">
2017-09-15 14:33:52 +00:00
<h3 class="dashboard-title-thin"><img src="{% static 'hosting/img/plusVM.svg' %}" class="un-icon" style="margin-top: -18px;width: 42px;height: 42px;"> {% trans "Create VM" %}</h3>
2017-09-30 11:23:44 +00:00
<p style="padding-left: 16px;">{% trans "Affordable VM hosting based in Switzerland" %}</p>
2017-09-15 14:33:52 +00:00
{% if messages %}
<div class="alert alert-warning">
{% for message in messages %}
<span>{{ message }}</span>
{% endfor %}
</div>
{% endif %}
2017-09-14 19:19:39 +00:00
</div>
</div>
<div class="col-sm-6 hosting-calculator">
{% render_placeholder cms_integration.calculator_placeholder %}
</div>
</div>
</div>
2017-09-14 19:19:39 +00:00
{%endblock%}