{% extends "base.html" %} {% load i18n %} {% load l10n %} {% get_current_language as LANGUAGE_CODE %} {% block content %}

{% trans "Virtual machines" %}

{% for box in boxes %} {% if forloop.counter0|divisibleby:2 %}

{{ box.title }}

{{ box.text|safe }}
{% endif %} {% endfor %} {% if userdetails.share_quota %} {% include "box-templatelist.html" %} {% include "box-grouplist.html" %} {% endif %}
{% include "box-filelist.html" %} {% endblock %}