21 lines
456 B
HTML
21 lines
456 B
HTML
|
{% extends 'mixins/wm/widget.html' %}
|
||
|
{% load static %}
|
||
|
|
||
|
{% block widget_options %}
|
||
|
gs-w="10" gs-h="1" gs-y="10" gs-x="1"
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block heading %}
|
||
|
Widget
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block close_button %}
|
||
|
<i
|
||
|
class="fa-solid fa-xmark has-text-grey-light float-right"
|
||
|
onclick='grid.removeWidget("widget-{{ unique }}"); //grid.compact();'></i>
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block panel_content %}
|
||
|
{% include 'window-content/main.html' %}
|
||
|
{% endblock %}
|