summaryrefslogtreecommitdiffstats
path: root/templates/admin/index.html
blob: 7ab55e1b8af60610d186a4a03cb141bf9d2ee2b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends "master-admin.html" %}
{% block main %}
{% if user.is_admin %}
    <h2>Select an item to configure</h2>
    <div class="col-md-12 col-sm-12 col-xs-12">
        {#<img src="{{ baseurl }}/scheme" width="100%"/>#}
        <object data="{{ baseurl }}/scheme" type="image/svg+xml" width="100%" height="100%">
            <param name="wmode" value="transparent" />
        </object>
    </div>
{% endif %}
{% endblock %}