-
Notifications
You must be signed in to change notification settings - Fork 7
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 #3660 from unicef/ch34541-face-report-dates
[FAM] Face Report Dates add to Spot Checks
- Loading branch information
Showing
4 changed files
with
30 additions
and
9 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
23 changes: 23 additions & 0 deletions
23
src/etools/applications/audit/migrations/0031_auto_20240507_1059.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,23 @@ | ||
# Generated by Django 3.2.19 on 2024-05-07 10:59 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('audit', '0030_engagement_send_back_comment'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='engagement', | ||
name='end_date', | ||
field=models.DateField(blank=True, null=True, verbose_name='Start date of first reporting FACE'), | ||
), | ||
migrations.AlterField( | ||
model_name='engagement', | ||
name='start_date', | ||
field=models.DateField(blank=True, null=True, verbose_name='End date of last reporting FACE'), | ||
), | ||
] |
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