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 13:55:45 -05:00
2017-09-15 00:49:39 +05:30
{% block content %}
2017-09-15 20:03:52 +05:30
<div class="dashboard-container create-vm-container">
2017-09-15 00:49:39 +05:30
<div class="row">
2017-09-19 01:17:15 +05:30
<div class="col-sm-5">
2017-09-15 00:49:39 +05:30
<div class="dashboard-container-head">
2017-09-15 20:03:52 +05:30
<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 16:53:44 +05:30
<p style="padding-left: 16px;">{% trans "Affordable VM hosting based in Switzerland" %}</p>
2017-09-15 20:03:52 +05:30
{% if messages %}
<div class="alert alert-warning">
{% for message in messages %}
<span>{{ message }}</span>
{% endfor %}
</div>
{% endif %}
2017-09-15 00:49:39 +05:30
</div>
</div>
<div class="col-sm-6 hosting-calculator">
{% render_placeholder cms_integration.calculator_placeholder %}
</div>
</div>
</div>
2017-09-15 00:49:39 +05:30
{%endblock%}