Add SVG Image to the Home administration page
[cascardo/ipsilon.git] / templates / admin / index.html
1 {% extends "master-admin.html" %}
2 {% block main %}
3 {% if user.is_admin %}
4     <h2>Select an item to configure</h2>
5     <div class="col-md-12 col-sm-12 col-xs-12">
6         {#<img src="{{ baseurl }}/scheme" width="100%"/>#}
7         <object data="{{ baseurl }}/scheme" type="image/svg+xml" width="100%" height="100%">
8             <param name="wmode" value="transparent" />
9         </object>
10     </div>
11 {% endif %}
12 {% endblock %}