/**
* -----------------------------------------------------------------------------
* @package smartVISU
* @author Martin Gleiß, Wolfram v. Hülsen
* @copyright 2012 - 2024
* @license GPL [http://www.gnu.de]
* -----------------------------------------------------------------------------
*/
{% extends "base.html" %}
{% block sidebar %}
{% if page=='apps' %}
{% set language = lang('baselang') %}
{% for file in dir('apps', 'app_(.+?).html') %}
{% set app = docu('apps/app_'~file.name~'.html') %}
{{ app.title|e }}
{% if attribute(app, 'description_' ~ language) is defined %}
{{ attribute(app, 'description_'~language ) }}
{% else %}
{{ app.description }}
{% endif %}
{% if app.info or app.link %}
{% endif %}
{% if app.info %}
{% if attribute(app, 'info_' ~ language) is defined %}
{{ attribute(app, 'info_'~language ) }}
{% else %}
{{ app.info }}
{% endif %}
{% endif %}
{% if app.link %}
{{ app.link|e }}
{% endif %}
{% if app.author or app.version %}
{% endif %}
{% if app.author %}
{{ lang('templatechecker', 'author')|capitalize }}: {{ app.author }}
{% endif %}
{{ lang('templatechecker', 'file')|capitalize }}: {{ file.file }}
{% if app.version %}
Version: {{ app.version }}
{% endif %}
{% endfor %}
{% endif %}
{% endblock %}
{% block content %}