2017-08-22 15:15:18 +00:00
|
|
|
{% extends "hosting/base_short.html" %}
|
|
|
|
{% load staticfiles bootstrap3 i18n %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="hosting-dashboard">
|
|
|
|
<div class="dashboard-container">
|
2017-08-22 16:05:30 +00:00
|
|
|
<div class="dashboard-container-head">
|
|
|
|
<h1 class="dashboard-title-thin">{% trans "My Dashboard" %}</h1>
|
|
|
|
</div>
|
2019-12-18 14:39:41 +00:00
|
|
|
<div style="color:#fff; font-size: 18px; font-weight:300; padding: 0 8px; margin-top: 30px; margin-bottom: 30px;">
|
2019-12-16 07:54:59 +00:00
|
|
|
{% trans "Welcome" %} {{request.user.name}}
|
|
|
|
</div>
|
2017-08-22 16:05:30 +00:00
|
|
|
<div class="hosting-dashboard-content">
|
2017-08-24 15:06:00 +00:00
|
|
|
<a href="{% url 'hosting:create_virtual_machine' %}" class="hosting-dashboard-item">
|
2017-08-22 16:05:30 +00:00
|
|
|
<h2>{% trans "Create VM" %}</h2>
|
|
|
|
<div class="hosting-dashboard-image">
|
|
|
|
<img class="svg-img" src="{% static 'hosting/img/plusVM.svg' %}">
|
|
|
|
</div>
|
|
|
|
</a>
|
2017-08-24 15:06:00 +00:00
|
|
|
<a href="{% url 'hosting:virtual_machines' %}" class="hosting-dashboard-item">
|
2017-08-22 16:05:30 +00:00
|
|
|
<h2>{% trans "My VMs" %}</h2>
|
|
|
|
<div class="hosting-dashboard-image">
|
|
|
|
<img class="svg-img" src="{% static 'hosting/img/vm.svg' %}">
|
|
|
|
</div>
|
|
|
|
</a>
|
2017-08-24 15:06:00 +00:00
|
|
|
<a href="{% url 'hosting:ssh_keys' %}" class="hosting-dashboard-item">
|
2017-08-22 16:05:30 +00:00
|
|
|
<h2>{% trans "My SSH Keys" %}</h2>
|
|
|
|
<div class="hosting-dashboard-image">
|
|
|
|
<img class="svg-img" src="{% static 'hosting/img/key.svg' %}">
|
|
|
|
</div>
|
|
|
|
</a>
|
2020-01-20 06:37:32 +00:00
|
|
|
<a href="{% url 'hosting:invoices' %}" class="hosting-dashboard-item">
|
2017-08-22 16:05:30 +00:00
|
|
|
<h2>{% trans "My Bills" %}</h2>
|
|
|
|
<div class="hosting-dashboard-image">
|
|
|
|
<img class="svg-img" src="{% static 'hosting/img/billing.svg' %}">
|
|
|
|
</div>
|
|
|
|
</a>
|
2017-09-04 20:21:53 +00:00
|
|
|
<a href="{% url 'hosting:settings' %}" class="hosting-dashboard-item">
|
2017-08-22 16:05:30 +00:00
|
|
|
<h2>{% trans "My Settings" %}</h2>
|
|
|
|
<div class="hosting-dashboard-image">
|
|
|
|
<img class="svg-img" src="{% static 'hosting/img/dashboard_settings.svg' %}">
|
|
|
|
</div>
|
|
|
|
</a>
|
2017-08-29 12:31:00 +00:00
|
|
|
<a href="mailto:support@datacenterlight.ch" class="hosting-dashboard-item">
|
2017-08-22 16:05:30 +00:00
|
|
|
<h2>{% trans "Support / Contact" %}</h2>
|
|
|
|
<div class="hosting-dashboard-image">
|
|
|
|
<img class="svg-img" src="{% static 'hosting/img/24-hours-support.svg' %}">
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
</div>
|
2017-08-22 15:15:18 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{%endblock%}
|