-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Label for subproject select renamed "Child" => "Subproject" + help te…
…xt added (#9829) * Changes label from "Child" to "Subproject" * Adds a link to the documentation about subprojects * Apply "subproject" and "main project" terminology to model * Remove labels from the form again
- Loading branch information
1 parent
0aa6e2c
commit ae91a51
Showing
4 changed files
with
52 additions
and
8 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
34 changes: 34 additions & 0 deletions
34
readthedocs/projects/migrations/0094_auto_20221221_1045.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,34 @@ | ||
# Generated by Django 3.2.16 on 2022-12-21 10:45 | ||
|
||
import django.db.models.deletion | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("projects", "0093_migrate_null_fields"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="projectrelationship", | ||
name="child", | ||
field=models.ForeignKey( | ||
on_delete=django.db.models.deletion.CASCADE, | ||
related_name="superprojects", | ||
to="projects.project", | ||
verbose_name="Subproject", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="projectrelationship", | ||
name="parent", | ||
field=models.ForeignKey( | ||
on_delete=django.db.models.deletion.CASCADE, | ||
related_name="subprojects", | ||
to="projects.project", | ||
verbose_name="Main 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