/**
* -----------------------------------------------------------------------------
* @package smartVISU
* @author Martin Gleiß
* @copyright 2012
* @license GPL [http://www.gnu.de]
* -----------------------------------------------------------------------------
*/
/**
* Displays a list of logging-information
*
* @param unique id for this widget
* @param the name of the log
* @param maximal number of entries (1 - 50)
*/
{% macro log(id, item, count) %}
{% endmacro %}
/**
* Displays a notification popup window
*
* @param unique id for this widget
* @param a gad/item witch triggers the notification
* @param a gad/item with the dynamic message
* @param a word for the signal corner
* @param a title of the messagebox
* @param a additional static text
* @param the mode: 'info', 'warning', 'error' (optional, default 'info')
*/
{% macro notify(id, gad_trigger, gad_message, signal, title, text, mode) %}
{{ title }}
{{ text }}
{% endmacro %}