-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #214 from usnistgov/5.5.0.dev
5.5.0.dev
- Loading branch information
Showing
72 changed files
with
3,561 additions
and
405 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
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
42 changes: 42 additions & 0 deletions
42
NEMO/apps/contracts/migrations/0003_documents_display_order.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,42 @@ | ||
# Generated by Django 3.2.25 on 2024-04-08 11:57 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("contracts", "0002_increase_document_path_length"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name="contractoragreementdocuments", | ||
options={ | ||
"ordering": ["display_order", "-uploaded_at"], | ||
"verbose_name_plural": "Contractor agreement documents", | ||
}, | ||
), | ||
migrations.AlterModelOptions( | ||
name="procurementdocuments", | ||
options={"ordering": ["display_order", "-uploaded_at"], "verbose_name_plural": "Procurement documents"}, | ||
), | ||
migrations.AddField( | ||
model_name="contractoragreementdocuments", | ||
name="display_order", | ||
field=models.IntegerField( | ||
default=1, | ||
help_text="The order in which choices are displayed on the landing page, from left to right, top to bottom. Lower values are displayed first.", | ||
), | ||
preserve_default=False, | ||
), | ||
migrations.AddField( | ||
model_name="procurementdocuments", | ||
name="display_order", | ||
field=models.IntegerField( | ||
default=1, | ||
help_text="The order in which choices are displayed on the landing page, from left to right, top to bottom. Lower values are displayed first.", | ||
), | ||
preserve_default=False, | ||
), | ||
] |
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.