/** * ----------------------------------------------------------------------------- * @package smartVISU * @author Martin Gleiß * @copyright 2012 - 2015 * @license GPL [http://www.gnu.de] * ----------------------------------------------------------------------------- */ /** * Displays the phonelist from a phone system * * @param {id} unique id for this widget * @param {text=} a title to display * @param {value=10} the number of displayed lines, default 10 * @param {duration=15i} the refresh interval for this widget (using duration format), default 15i (15 minutes) * * @see misc/fundamentals#Duration-Format */ {% macro list(id, title, count, repeat) %} {% set uid = uid(page, id) %}
{% if title %}

{{ title }}

{% endif %}
{% endmacro %} /** * Displays the phonelist (only missed phonecalls) from a phone system * * @param {id} unique id for this widget * @param {text=} a title to display * @param {value=3} the number of displayed lines, default 3 * @param {duration=15i} the refresh interval for this widget (using duration format), default 15i (15 minutes) * * @see misc/fundamentals#Duration-Format */ {% macro missedlist(id, title, count, repeat) %} {% set uid = uid(page, id) %}
{% if title %}

{{ title }}

{% endif %}
{% endmacro %}