{# /** * Copyright (C) 2026 OTS Signs * * About dialog content for OTS Signs. */ #} {% extends "form-base.twig" %} {% block formTitle %}{% trans "About" %}{% endblock %} {% block formButtons %} {% trans "Close" %}, XiboDialogClose() {% endblock %} {% block formHtml %}

{% trans "About" %} OTS Signs

{% trans "OTS Signs provides a compact, focused interface for your digital signage network" %}

{% set appVersion = version|default("dev") %} {% set appEnvironment = appEnvironment|default(environment|default("local")) %} {% set commitSha = revision|default("") %}
{% trans "Version" %}: {{ appVersion }}
{% trans "Environment" %}: {{ appEnvironment }}
{% if commitSha %}
{% trans "Commit" %}: {{ commitSha|slice(0, 7) }}
{% endif %}
{% trans "Disclaimer:" %} {% trans "OTS Signs is an custom front end developed by Oribi Technology Services for the Xibo CMS. It is not affiliated with the Xibo project or its maintainers. Xibo is a trademark of Xibo Digital Signage Ltd. Use of Xibo is subject to their terms and conditions." %}
{% endblock %}