-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
81 additions
and
23 deletions.
There are no files selected for viewing
This file contains 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 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,31 @@ | ||
# Generated by Django 3.2.20 on 2023-09-19 09:52 | ||
|
||
from django.db import migrations | ||
import django_ckeditor_5.fields | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("a4projects", "0039_add_alt_text_to_field"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="project", | ||
name="information", | ||
field=django_ckeditor_5.fields.CKEditor5Field( | ||
blank=True, | ||
help_text="This description should tell participants what the goal of the project is, how the project’s participation will look like. It will be always visible in the „Info“ tab on your project’s page.", | ||
verbose_name="Description of your project", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="project", | ||
name="result", | ||
field=django_ckeditor_5.fields.CKEditor5Field( | ||
blank=True, | ||
help_text="Here you should explain what the expected outcome of the project will be and how you are planning to use the results. If the project is finished you should add a summary of the results.", | ||
verbose_name="Results of your project", | ||
), | ||
), | ||
] |
This file contains 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 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 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
20 changes: 20 additions & 0 deletions
20
tests/apps/ideas/migrations/0006_alter_idea_description.py
This file contains 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,20 @@ | ||
# Generated by Django 3.2.20 on 2023-09-19 13:10 | ||
|
||
from django.db import migrations | ||
import django_ckeditor_5.fields | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("a4test_ideas", "0005_idea_is_bool_test"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="idea", | ||
name="description", | ||
field=django_ckeditor_5.fields.CKEditor5Field( | ||
blank=True, verbose_name="Description" | ||
), | ||
), | ||
] |
This file contains 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
18 changes: 18 additions & 0 deletions
18
tests/apps/moderatorfeedback/migrations/0005_alter_moderatorfeedback_feedback_text.py
This file contains 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,18 @@ | ||
# Generated by Django 3.2.20 on 2023-09-19 13:10 | ||
|
||
from django.db import migrations | ||
import django_ckeditor_5.fields | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("moderatorfeedback", "0004_verbose_name_created_modified"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="moderatorfeedback", | ||
name="feedback_text", | ||
field=django_ckeditor_5.fields.CKEditor5Field(blank=True), | ||
), | ||
] |
This file contains 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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
from ckeditor.fields import RichTextField | ||
from django_ckeditor_5.fields import CKEditor5Field | ||
|
||
from adhocracy4.models.base import UserGeneratedContentModel | ||
|
||
|
||
class ModeratorFeedback(UserGeneratedContentModel): | ||
feedback_text = RichTextField( | ||
feedback_text = CKEditor5Field( | ||
blank=True, | ||
) |
This file was deleted.
Oops, something went wrong.