Skip to content

Commit 7f3b5b8

Browse files
committed
Rename label for fdrs income
1 parent 4993347 commit 7f3b5b8

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 3.2.23 on 2024-02-23 04:27
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('databank', '0021_countrykeyclimate'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='fdrsincome',
15+
name='indicator',
16+
field=models.CharField(choices=[('h_gov_CHF', 'Home Government'), ('f_gov_CHF', 'Foreign Government'), ('ind_CHF', 'Individual'), ('corp_CHF', 'Corporation'), ('found_CHF', 'Foundation'), ('un_CHF', 'UN Agencies'), ('pooled_f_CHF', 'Pooled funds'), ('ngo_CHF', 'Non Governmental Organization'), ('si_CHF', 'Service Income'), ('iga_CHF', 'Income Generating Activity'), ('KPI_incomeFromNSsLC_CHF', 'Other National Society'), ('ifrc_CHF', 'IFRC'), ('icrc_CHF', 'ICRC'), ('other_CHF', 'Other Source')], max_length=255, verbose_name='indicator'),
17+
),
18+
]

databank/models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -686,8 +686,8 @@ class FDRSIndicator(models.TextChoices):
686686
SERVICE_INCOME = 'si_CHF', _('Service Income')
687687
INCOME_GENERATING_ACTIVITY = 'iga_CHF', _('Income Generating Activity')
688688
OTHER_NATIONAL_SOCIETY = 'KPI_incomeFromNSsLC_CHF', _('Other National Society')
689-
IFRC = 'ifrc_CHF', _('Ifrc')
690-
ICRC = 'icrc_CHF', _('Icrc')
689+
IFRC = 'ifrc_CHF', _('IFRC')
690+
ICRC = 'icrc_CHF', _('ICRC')
691691
OTHER_SOURCE = 'other_CHF', _('Other Source')
692692

693693
overview = models.ForeignKey(

0 commit comments

Comments
 (0)