home.html 522 Bytes
Newer Older
Dudás Ádám committed
1 2
{% extends "base.html" %}
{% load i18n %}
3
{% load staticfiles %}
Őry Máté committed
4
{% get_current_language as LANGUAGE_CODE %}
5
{% block js %}
6
<script type="text/javascript" src="{% static "script/store.js" %}"></script>
7
{% endblock %}
Dudás Ádám committed
8 9
{% block content %}
<div class="boxes">
10
    {% include "box/vm/box.html" %}
11 12 13 14
    {% if userdetails.share_quota %}
        {% include "box/template/box.html" %}
        {% include "box/group/box.html" %}
    {% endif %}
Dudás Ádám committed
15
</div>
16
<div class="boxes">
17
    {% include "box/file/box.html" %}
18
</div>
Dudás Ádám committed
19
{% endblock %}