2026-02-04 15:26:44 -05:00
{ #
/**
* 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 %}
<div class="about-container">
<h2>
{% trans "About" %}
<a href="https://ots-signs.com" target="_blank" rel="noopener noreferrer">OTS Signs</a>
</h2>
Refactor toolbar buttons across various pages to unify styling
- Updated button classes for consistency in the playersoftware-page, playlist-page, resolution-page, schedule-page, settings-page, syncgroup-page, tag-page, task-page, template-page, transition-page, user-page, and usergroup-page.
- Removed unnecessary text from button titles and ensured all buttons have the 'ots-toolbar-btn' class for uniformity.
- Cleaned up the code by removing commented-out sections and ensuring proper indentation.
2026-02-07 14:50:40 -05:00
<p class="text-muted"> {% trans "OTS Signs provides a compact, focused interface for your digital signage network" %} </p>
2026-02-04 15:26:44 -05:00
{% set appVersion = version | default ( "dev" ) %}
{% set appEnvironment = appEnvironment | default ( environment | default ( "local" ) ) %}
{% set commitSha = revision | default ( "" ) %}
<div class="about-meta">
<div> {% trans "Version" %} : {{ appVersion }} </div>
<div> {% trans "Environment" %} : {{ appEnvironment }} </div>
{% if commitSha %}
<div> {% trans "Commit" %} : {{ commitSha | slice ( 0 , 7 ) }} </div>
{% endif %}
</div>
<div class="about-links">
<a href="/privacy"> {% trans "Privacy Policy" %} </a>
<a href="/terms"> {% trans "Terms of Service" %} </a>
<a href="/open-source-licenses"> {% trans "Open Source Licenses" %} </a>
</div>
<div class="about-disclaimer">
<strong> {% trans "Disclaimer:" %} </strong>
Refactor toolbar buttons across various pages to unify styling
- Updated button classes for consistency in the playersoftware-page, playlist-page, resolution-page, schedule-page, settings-page, syncgroup-page, tag-page, task-page, template-page, transition-page, user-page, and usergroup-page.
- Removed unnecessary text from button titles and ensured all buttons have the 'ots-toolbar-btn' class for uniformity.
- Cleaned up the code by removing commented-out sections and ensuring proper indentation.
2026-02-07 14:50:40 -05:00
{% 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." %}
2026-02-04 15:26:44 -05:00
<div class="mt-2">
Refactor toolbar buttons across various pages to unify styling
- Updated button classes for consistency in the playersoftware-page, playlist-page, resolution-page, schedule-page, settings-page, syncgroup-page, tag-page, task-page, template-page, transition-page, user-page, and usergroup-page.
- Removed unnecessary text from button titles and ensured all buttons have the 'ots-toolbar-btn' class for uniformity.
- Cleaned up the code by removing commented-out sections and ensuring proper indentation.
2026-02-07 14:50:40 -05:00
<a href="https://github.com/xibosignage/xibo" target="_blank" rel="noopener noreferrer"> {% trans "View the Xibo CMS source on GitHub" %} </a>
2026-02-04 15:26:44 -05:00
</div>
</div>
</div>
{% endblock %}