-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Configure ZIP jobs * Fix the export job creation * Refactor media file paths * Fix NGO logos
- Loading branch information
Showing
11 changed files
with
165 additions
and
48 deletions.
There are no files selected for viewing
36 changes: 36 additions & 0 deletions
36
backend/donations/migrations/0006_alter_donor_pdf_file_alter_ngo_prefilled_form.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,36 @@ | ||
# Generated by Django 4.2.9 on 2024-01-31 12:37 | ||
|
||
from django.db import migrations, models | ||
import donations.models.main | ||
import functools | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("donations", "0005_alter_ngo_prefilled_form"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="donor", | ||
name="pdf_file", | ||
field=models.FileField( | ||
blank=True, | ||
upload_to=functools.partial( | ||
donations.models.main.year_ngo_donor_directory_path, *("donation-forms",), **{} | ||
), | ||
verbose_name="PDF file", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="ngo", | ||
name="prefilled_form", | ||
field=models.FileField( | ||
blank=True, | ||
storage=donations.models.main.select_public_storage, | ||
upload_to=functools.partial(donations.models.main.year_ngo_directory_path, *("ngo-forms",), **{}), | ||
verbose_name="form with prefilled ngo data", | ||
), | ||
), | ||
] |
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
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