27 lines
No EOL
1 KiB
HTML
27 lines
No EOL
1 KiB
HTML
{% extends "hosting/base_short.html" %}
|
|
{% load staticfiles bootstrap3 i18n cms_tags %}
|
|
|
|
{% block content %}
|
|
|
|
|
|
<div class="dashboard-container create-vm-container">
|
|
<div class="row">
|
|
<div class="col-sm-5">
|
|
<div class="dashboard-container-head">
|
|
<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>
|
|
<p style="padding-left: 16px;">{% trans "Affordable VM hosting based in Switzerland" %}</p>
|
|
{% if messages %}
|
|
<div class="alert alert-warning">
|
|
{% for message in messages %}
|
|
<span>{{ message }}</span>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-6 hosting-calculator">
|
|
{% render_placeholder cms_integration.calculator_placeholder %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{%endblock%} |