{# -*- engine:django -*- #} {% extends "core/base.html" %} {% load i18n %} {% block browser_title %}{% blocktrans %}About AlekSIS{% endblocktrans %}{% endblock %} {% block page_title %}{% blocktrans %}AlekSIS – The Free School Information System{% endblocktrans %}{% endblock %} {% block content %}
{% blocktrans %}About AlekSIS{% endblocktrans %}

{% blocktrans %} This platform is powered by AlekSIS, a web-based school information system (SIS) which can be used to manage and/or publish organisational artifacts of educational institutions. AlekSIS is free software and can be used by anyone. {% endblocktrans %}

{% trans "Licence information" %}

{% blocktrans %} The core and the official apps of AlekSIS are licenced under the EUPL, version 1.2 or later. For licence information from third-party apps, if installed, refer to the respective components below. The licences are marked like this: {% endblocktrans %}


{% trans "Free/Open Source Licence" %} {% trans "Other Licence" %}

{% for app_config in app_configs %}
{% if app_config.get_licence.1.isFsfLibre %} Free Software {% elif app_config.get_licence.1.isOsiApproved %} Open Source {% endif %} {{ app_config.get_name }} {{ app_config.get_version }} {% if app_config.get_copyright %}

{% for holder in app_config.get_copyright %} Copyright © {{ holder.0 }} {% if holder.2 %} {{ holder.1 }} {% else %} {{ holder.1 }} {% endif %}
{% endfor %}


{% endif %} {% if app_config.get_licence %} {% with licence=app_config.get_licence %}

{% blocktrans with licence=licence.0 %} This app is licenced under {{ licence }}. {% endblocktrans %}


{% for l in licence.2 %} {{ l.name }} {% endfor %}

{% endwith %} {% endif %}
{% if app_config.get_urls %}
{% for url_name, url in app_config.get_urls.items %} {{ url_name }} {% endfor %}
{% endif %}
{% if forloop.counter|divisibleby:2 %}
{% endif %} {% endfor %}
{% endblock %}