Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AlekSIS®
Official
AlekSIS-Core
Merge requests
!146
Resolve "Add licence information page"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Add licence information page"
108-add-licence-information-page
into
master
Overview
19
Commits
21
Pipelines
20
Changes
7
Merged
Jonathan Weth
requested to merge
108-add-licence-information-page
into
master
5 years ago
Overview
19
Commits
21
Pipelines
20
Changes
7
Expand
Closes
#108 (closed)
Edited
4 years ago
by
Nik | Klampfradler
0
0
Merge request reports
Compare
master
version 18
f0212de9
4 years ago
version 17
5c02f434
4 years ago
version 16
08088d4d
4 years ago
version 15
4cd0de0f
4 years ago
version 14
04ab1ed1
4 years ago
version 13
1fb529e0
4 years ago
version 12
3aee5929
4 years ago
version 11
37edc08a
4 years ago
version 10
7f107305
4 years ago
version 9
dba534f4
4 years ago
version 8
d3578f67
4 years ago
version 7
a8b649b3
4 years ago
version 6
c82e52ff
4 years ago
version 5
4999abf1
5 years ago
version 4
48ec91e6
5 years ago
version 3
c6da204a
5 years ago
version 2
668885f0
5 years ago
version 1
96958a7e
5 years ago
master (base)
and
version 7
latest version
91c23501
21 commits,
4 years ago
version 18
f0212de9
21 commits,
4 years ago
version 17
5c02f434
20 commits,
4 years ago
version 16
08088d4d
19 commits,
4 years ago
version 15
4cd0de0f
17 commits,
4 years ago
version 14
04ab1ed1
16 commits,
4 years ago
version 13
1fb529e0
14 commits,
4 years ago
version 12
3aee5929
12 commits,
4 years ago
version 11
37edc08a
11 commits,
4 years ago
version 10
7f107305
10 commits,
4 years ago
version 9
dba534f4
9 commits,
4 years ago
version 8
d3578f67
8 commits,
4 years ago
version 7
a8b649b3
7 commits,
4 years ago
version 6
c82e52ff
6 commits,
4 years ago
version 5
4999abf1
5 commits,
5 years ago
version 4
48ec91e6
4 commits,
5 years ago
version 3
c6da204a
3 commits,
5 years ago
version 2
668885f0
2 commits,
5 years ago
version 1
96958a7e
1 commit,
5 years ago
7 files
+
132
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
7
Search (e.g. *.vue) (Ctrl+P)
aleksis/core/templates/core/about.html
0 → 100644
+
79
−
0
Options
{# -*- 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 %}
<div
class=
"card"
>
<div
class=
"card-content"
>
<span
class=
"card-title"
>
{% blocktrans %}About AlekSIS{% endblocktrans %}
</span>
<p>
{% blocktrans %}
AlekSIS is a web-based school information system (SIS) which can be used to manage and/or publish
organisational subjects of educational institutions.
{% endblocktrans %}
</p>
</div>
<div
class=
"card-action"
>
<a
class=
""
href=
"https://aleksis.org/"
>
{% trans "Website of AlekSIS" %}
</a>
</div>
</div>
<div
class=
"card"
>
<div
class=
"card-content"
>
<span
class=
"card-title"
>
{% trans "Licence information" %}
</span>
<p>
{% 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, see directly at the respective components below.
{% endblocktrans %}
</p>
</div>
<div
class=
"card-action"
>
<a
href=
"https://eupl.eu"
>
{% trans "Full licence text" %}
</a>
<a
href=
"https://joinup.ec.europa.eu/collection/eupl/guidelines-users-and-developers"
>
{% trans "More information about the EUPL" %}
</a>
</div>
</div>
{% for app in licence_information %}
<div
class=
"card"
>
<div
class=
"card-content"
>
<span
class=
"card-title"
>
{{ app.name }}
</span>
{% if app.copyright_holders %}
<p>
{% for holder in app.copyright_holders %}
Copyright © {{ holder.0|join:", " }}
{% if holder.2 %}
<a
href=
"mailto:{{ holder.2 }}"
>
{{ holder.1 }}
</a>
{% else %}
{{ holder.1 }}
{% endif %}
<br/>
{% endfor %}
</p>
<br/>
{% endif %}
{% if app.licence %}
<p>
{% blocktrans with licence=app.licence %}
This part of AlekSIS is licenced under the {{ licence }}.
{% endblocktrans %}
</p>
{% endif %}
</div>
{% if app.repository %}
<div
class=
"card-action"
>
<a
href=
"{{ app.repository }}"
>
{% trans "Show source code" %}
</a>
</div>
{% endif %}
</div>
{% endfor %}
{% endblock %}
Loading