Commit 0468d9f5 by Kálmán Viktor

templates: legal, policy, support

parent f6d37eec
{% extends "dashboard/base.html" %}
{% load i18n %}
{% block title-page %}{% trans "Legal notice" %}{% endblock %}
{% block content %}
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="page-header">
<h1>{% trans "Legal notice" %}</h1>
</div>
<div class="panel panel-default">
<div class="panel-body">
{% blocktrans %}
CIRCLE Cloud is a complete and open source cloud solution
that can be deployed with minimal effort on a single computer as well as on a larger cluster.
{% endblocktrans %}
</div>
</div>
<div class="panel panel-default">
<div class="panel-body">
{% blocktrans with maintainer=COMPANY_NAME %}
The maintainer of this site is: {{ maintainer }}
{% endblocktrans %}
</div>
</div>
</div>
</div>
{% endblock %}
{% extends "dashboard/base.html" %}
{% load i18n %}
{% block title-page %}{% trans "Policy" %}{% endblock %}
{% block content %}
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="page-header">
<h1>{% trans "Policy" %} <small>{% trans "terms of usage" %}</small></h1>
</div>
<div class="panel panel-default">
<div class="panel-body">
<p>
<ul>
<li>
{% blocktrans %}
The system cannot be used for illegal activites.
{% endblocktrans %}
</li>
<li>
{% blocktrans %}
Every virtual machine has an expiration date, when this date is reached
the machine will be stopped, if the user doesn't renew the machine
it will be deleted and all data on it will be lost.
{% endblocktrans %}
</li>
<li>
{% blocktrans %}
Running the the virtual machine safely and
updating the operating system is the responsibility of the user.
{% endblocktrans %}
</li>
</ul>
</p>
</div>
</div>
<div class="panel panel-default">
<div class="panel-body">
{% blocktrans %}
You can connect to the running virtual machines the usual way: for Windows machines
this mean RDP (remote desktop), Linux machines can be accessed either via SSH
or NoMachine NX (GUI).
{% endblocktrans %}
{# Installing the CIRCLE Desktop Client makes connecting easier. #}
</div>
</div>
</div>
</div>
{% endblock %}
{% extends "dashboard/base.html" %}
{% load i18n %}
{% block title-page %}{% trans "Support" %}{% endblock %}
{% block content %}
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="page-header">
<h1>{% trans "Support" %}</h1>
</div>
<div class="panel panel-default">
<div class="panel-body">
{% blocktrans %}
CIRCLE Cloud is an open source cloud solution. If you notice any bugs or
you have an idea for a feature please contact the maintainer of the site.
{% endblocktrans %}
</div>
</div>
</div>
</div>
{% endblock %}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment