Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • AlekSIS/official/AlekSIS-App-Hjelp
  • sunweaver/AlekSIS-App-Hjelp
  • sggua/AlekSIS-App-Hjelp
  • quetialka/AlekSIS-App-Hjelp
  • nasolmemo/AlekSIS-App-Hjelp
5 results
Show changes
Commits on Source (5)
......@@ -9,7 +9,10 @@ This is an application for use with the `AlekSIS`_ platform.
Features
--------
The Hjelp app provides functionality for aiding users.
* Report issues
* Frequently asked questions
* Ask questions
* Feedback
Licence
-------
......@@ -29,5 +32,5 @@ full licence text or on the `European Union Public Licence`_ website
https://joinup.ec.europa.eu/collection/eupl/guidelines-users-and-developers
(including all other official language versions).
.. _AlekSIS: https://edugit.org/AlekSIS/AlekSIS
.. _AlekSIS: https://aleksis.org/
.. _European Union Public Licence: https://eupl.eu/
Source diff could not be displayed: it is too large. Options to address this: view the blob.
This diff is collapsed.
# Generated by Django 3.0.5 on 2020-04-13 09:59
from django.db import migrations
import ckeditor.fields
class Migration(migrations.Migration):
dependencies = [
("hjelp", "0002_add_bug_report"),
]
operations = [
migrations.AlterField(
model_name="faqquestion",
name="answer_text",
field=ckeditor.fields.RichTextField(
help_text="Because of our CSS framework the HTML tag <strong>&lt;ul&gt;</strong> must have the CSS class <em>browser-default</em>. In this case, please use the manual editor mode."
),
),
]
# Generated by Django 3.0.5 on 2020-04-14 13:28
import django.contrib.postgres.fields.jsonb
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("hjelp", "0003_alter_faqquestion_answer_text_field"),
]
operations = [
migrations.AddField(
model_name="faqquestion",
name="extended_data",
field=django.contrib.postgres.fields.jsonb.JSONField(
default=dict, editable=False
),
),
migrations.AddField(
model_name="faqsection",
name="extended_data",
field=django.contrib.postgres.fields.jsonb.JSONField(
default=dict, editable=False
),
),
migrations.AddField(
model_name="rebuscategory",
name="extended_data",
field=django.contrib.postgres.fields.jsonb.JSONField(
default=dict, editable=False
),
),
migrations.AddField(
model_name="support",
name="extended_data",
field=django.contrib.postgres.fields.jsonb.JSONField(
default=dict, editable=False
),
),
]
[tool.poetry]
name = "AlekSIS-App-Hjelp"
version = "1.0a4dev0"
version = "2.0a2"
packages = [
{ include = "aleksis" }
]
readme = "README.rst"
description = "AlekSIS (School Information System) — App Hjelp (FAQ and support)"
authors = ["Julian Leucker <leuckeju@katharineum.de>", "Frank Poetzsch-Heffter <p-h@katharineum.de>", "Jonathan Weth <wethjo@katharineum.de>", "Hangzhi Yu <yuha@katharineum.de>"]
license = "EUPL-1.2"
homepage = "https://aleksis.edugit.io/"
repository = "https://edugit.org/AlekSIS/AlekSIS-App-Hjelp"
documentation = "https://aleksis.edugit.io/AlekSIS/docs/html/"
description = "AlekSIS (School Information System) — App Hjelp (FAQ, issue reporting and support)"
authors = ["Julian Leucker <leuckeju@katharineum.de>", "Frank Poetzsch-Heffter <p-h@katharineum.de>", "Jonathan Weth <wethjo@katharineum.de>", "Hangzhi Yu <yuha@katharineum.de>", "Tom Teichler <tom.teichler@teckids.org>"]
maintainers = ["Jonathan Weth <wethjo@katharineum.de>", "Dominik George <dominik.george@teckids.org>"]
license = "EUPL-1.2-or-later"
homepage = "https://aleksis.org/"
repository = "https://edugit.org/AlekSIS/official/AlekSIS-App-Hjelp"
documentation = "https://aleksis.org/AlekSIS/docs/html/"
keywords = ["SIS", "education", "school", "support", "feedback"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: Django :: 3.0",
"Intended Audience :: Education",
"Topic :: Education"
"Topic :: Education",
"Typing :: Typed",
]
[tool.poetry.dependencies]
......