-
Notifications
You must be signed in to change notification settings - Fork 0
add pre-release bugfixes and enhancements #34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
4e13533
theming: update logo
partizipation cb4115a
apps/learning nuggets: change nugget roles to german
partizipation cfc757e
apps/learning nuggets: remove permissions on nugget view
partizipation 7872a6a
apps/organisations: add qr create page
partizipation 30339fe
add default plaform name and site title
partizipation d99418d
emails: update logo and footer
partizipation 4bc35d6
tests: fix platform name not roots
partizipation File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
apps/cms/settings/migrations/0008_alter_organisationsettings_platform_name.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| # Generated by Django 4.2.18 on 2025-05-21 13:35 | ||
|
|
||
| from django.db import migrations, models | ||
|
|
||
|
|
||
| class Migration(migrations.Migration): | ||
|
|
||
| dependencies = [ | ||
| ("a4_candy_cms_settings", "0007_importantpages_registration"), | ||
| ] | ||
|
|
||
| operations = [ | ||
| migrations.AlterField( | ||
| model_name="organisationsettings", | ||
| name="platform_name", | ||
| field=models.CharField( | ||
| default="ROOTS Beteiligung", | ||
| help_text="This name appears in the footer of all pages and e-mails as well as in the tab of the browser.", | ||
| max_length=20, | ||
| verbose_name="Platform name", | ||
| ), | ||
| ), | ||
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
apps/learning_nuggets/migrations/0005_alter_learningcategory_permission_level.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| # Generated by Django 4.2.18 on 2025-05-20 15:06 | ||
|
|
||
| from django.db import migrations, models | ||
|
|
||
|
|
||
| class Migration(migrations.Migration): | ||
|
|
||
| dependencies = [ | ||
| ("a4_candy_learning_nuggets", "0004_alter_learningnuggetpage_content"), | ||
| ] | ||
|
|
||
| operations = [ | ||
| migrations.AlterField( | ||
| model_name="learningcategory", | ||
| name="permission_level", | ||
| field=models.CharField( | ||
| choices=[ | ||
| ("participant", "Teilnehmer"), | ||
| ("initiator", "Initiator"), | ||
| ("moderator", "Moderator"), | ||
| ], | ||
| default="participant", | ||
| max_length=50, | ||
| ), | ||
| ), | ||
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
apps/organisations/templates/a4_candy_organisations/communication_qr_create.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| {% extends "a4dashboard/communication_form_base.html" %} | ||
| {% load i18n %} | ||
|
|
||
| {% block title %}{% translate "Settings" %} — {{ block.super }}{% endblock title %} | ||
|
|
||
| {% block communication_form %} | ||
| <div class="col-md-9"> | ||
| <h1 class="u-first-heading">{% translate "QR Codes erstellen" %}</h1> | ||
|
|
||
| <div class="qr-code-info mb-4"> | ||
| <p class="mb-2"> | ||
| {% translate "Mit QR-Codes könnt ihr einfach und direkt auf eure Beteiligungsprojekte verlinken – z. B. auf Plakaten oder Flyern." %} | ||
| </p> | ||
| <p class="mb-2"> | ||
| {% translate "Über dieses externe Tool der TU Chemnitz könnt ihr QR-Codes kostenlos erstellen:" %} | ||
| <br/> | ||
| <a href="https://www.tu-chemnitz.de/urz/apps/qrcode/" target="_blank"> | ||
| {% translate "QR-Code-Generator öffnen" %} | ||
| </a> | ||
| </p> | ||
| <p> | ||
| {% translate "Einfach Projekt-Link einfügen, Code erzeugen und für eure Öffentlichkeitsarbeit nutzen!" %} | ||
| </p> | ||
| </div> | ||
|
|
||
| </div> | ||
| {% endblock communication_form %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@shn-liqd that file for logo update fyi, for another project here