-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: enable flake8-django (DJ) rule in ruff config
- Loading branch information
1 parent
faf201f
commit 86f4fe4
Showing
16 changed files
with
1,041 additions
and
667 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
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
112 changes: 112 additions & 0 deletions
112
rdmo/options/migrations/0035_alter_option_help_lang1_alter_option_help_lang2_and_more.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,112 @@ | ||
# Generated by Django 4.2.7 on 2023-11-28 06:07 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("options", "0034_option_view_text"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="option", | ||
name="help_lang1", | ||
field=models.TextField( | ||
blank=True, | ||
default="", | ||
help_text="The help text for this option in the primary language.", | ||
verbose_name="Help (primary)", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="option", | ||
name="help_lang2", | ||
field=models.TextField( | ||
blank=True, | ||
default="", | ||
help_text="The help text for this option in the secondary language.", | ||
verbose_name="Help (secondary)", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="option", | ||
name="help_lang3", | ||
field=models.TextField( | ||
blank=True, | ||
default="", | ||
help_text="The help text for this option in the tertiary language.", | ||
verbose_name="Help (tertiary)", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="option", | ||
name="help_lang4", | ||
field=models.TextField( | ||
blank=True, | ||
default="", | ||
help_text="The help text for this option in the quaternary language.", | ||
verbose_name="Help (quaternary)", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="option", | ||
name="help_lang5", | ||
field=models.TextField( | ||
blank=True, | ||
default="", | ||
help_text="The help text for this option in the quinary language.", | ||
verbose_name="Help (quinary)", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="option", | ||
name="view_text_lang1", | ||
field=models.TextField( | ||
blank=True, | ||
default="", | ||
help_text="The view text for this option in the primary language.", | ||
verbose_name="View text (primary)", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="option", | ||
name="view_text_lang2", | ||
field=models.TextField( | ||
blank=True, | ||
default="", | ||
help_text="The view text for this option in the secondary language.", | ||
verbose_name="View text (secondary)", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="option", | ||
name="view_text_lang3", | ||
field=models.TextField( | ||
blank=True, | ||
default="", | ||
help_text="The view text for this option in the tertiary language.", | ||
verbose_name="View text (tertiary)", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="option", | ||
name="view_text_lang4", | ||
field=models.TextField( | ||
blank=True, | ||
default="", | ||
help_text="The view text for this option in the quaternary language.", | ||
verbose_name="View text (quaternary)", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="option", | ||
name="view_text_lang5", | ||
field=models.TextField( | ||
blank=True, | ||
default="", | ||
help_text="The view text for this option in the quinary language.", | ||
verbose_name="View text (quinary)", | ||
), | ||
), | ||
] |
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
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
Oops, something went wrong.