home.html 640 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 7 8
{% if DEBUG %}<script type="text/javascript" src="{% static "script/store.js" %}"></script>
{% else %}<script type="text/javascript" src="{% static "script/store.min.js" %}"></script>
{% endif %}
9
{% endblock %}
Dudás Ádám committed
10 11
{% block content %}
<div class="boxes">
12
    {% include "box/vm/box.html" %}
13 14 15 16
    {% if userdetails.share_quota %}
        {% include "box/template/box.html" %}
        {% include "box/group/box.html" %}
    {% endif %}
Dudás Ádám committed
17
</div>
18
<div class="boxes">
19
    {% include "box/file/box.html" %}
20
</div>
Dudás Ádám committed
21
{% endblock %}