2018-03-31 09:52:06 +00:00
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
# Generated by Django 1.11.6 on 2018-03-31 09:33
|
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
|
|
import multiselectfield.db.fields
|
2019-08-19 21:53:34 +00:00
|
|
|
|
from django.db import migrations
|
|
|
|
|
from django.db import models
|
2018-03-31 09:52:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
2019-08-19 21:37:32 +00:00
|
|
|
|
dependencies = [("map", "0047_auto_20180331_0607")]
|
2018-03-31 09:52:06 +00:00
|
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
|
migrations.AddField(
|
2019-08-19 21:37:32 +00:00
|
|
|
|
model_name="casestudy",
|
|
|
|
|
name="financial_institutions_other",
|
|
|
|
|
field=models.TextField(
|
|
|
|
|
blank=True,
|
|
|
|
|
help_text="List any other financial institutions not listed above. Put each on a new line.",
|
|
|
|
|
verbose_name="Financial institutions – other",
|
|
|
|
|
),
|
2018-03-31 09:52:06 +00:00
|
|
|
|
),
|
|
|
|
|
migrations.AlterField(
|
2019-08-19 21:37:32 +00:00
|
|
|
|
model_name="casestudy",
|
|
|
|
|
name="financial_institutions",
|
|
|
|
|
field=multiselectfield.db.fields.MultiSelectField(
|
|
|
|
|
blank=True,
|
|
|
|
|
choices=[
|
|
|
|
|
("AfDB", "African Development Bank (AfDB)"),
|
|
|
|
|
("BADEA", "Arab Bank for Economic Development in Africa (BADEA)"),
|
|
|
|
|
("ADB", "Asian Development Bank (ADB)"),
|
|
|
|
|
("AIIB", "Asian Infrastructure Investment Bank (AIIB)"),
|
|
|
|
|
("BSTDB", "Black Sea Trade and Development Bank (BSTDB)"),
|
|
|
|
|
(
|
|
|
|
|
"CAF",
|
|
|
|
|
"Corporacion Andina de Fomento / Development Bank of Latin America (CAF)",
|
|
|
|
|
),
|
|
|
|
|
("CDB", "Caribbean Development Bank (CDB)"),
|
|
|
|
|
("CABEI", "Central American Bank for Economic Integration (CABEI)"),
|
|
|
|
|
("EADB", "East African Development Bank (EADB)"),
|
|
|
|
|
(
|
|
|
|
|
"ETDB",
|
|
|
|
|
"Economic Cooperation Organization Trade and Development Bank (ETDB)",
|
|
|
|
|
),
|
|
|
|
|
("EDB", "Eurasian Development Bank (EDB)"),
|
|
|
|
|
("EBRD", "European Bank for Reconstruction and Development (EBRD)"),
|
|
|
|
|
("EC", "European Commission (EC)"),
|
|
|
|
|
("EIB", "European Investment Bank (EIB)"),
|
|
|
|
|
("IADB", "Inter-American Development Bank Group (IDB, IADB)"),
|
|
|
|
|
(
|
|
|
|
|
"IFFIm",
|
|
|
|
|
"International Finance Facility for Immunisation (IFFIm)",
|
|
|
|
|
),
|
|
|
|
|
("IFAD", "International Fund for Agricultural Development (IFAD)"),
|
|
|
|
|
("IIB", "International Investment Bank (IIB)"),
|
|
|
|
|
("IsDB", "Islamic Development Bank (IsDB)"),
|
|
|
|
|
(
|
|
|
|
|
"FMO",
|
|
|
|
|
"Nederlandse Financieringsmaatschappij voor Ontwikkelingslanden NV (FMO)",
|
|
|
|
|
),
|
|
|
|
|
(
|
|
|
|
|
"NDB",
|
|
|
|
|
"New Development Bank (NDB) (formerly BRICS Development Bank)",
|
|
|
|
|
),
|
|
|
|
|
("NDF", "The Nordic Development Fund"),
|
|
|
|
|
("NIB", "Nordic Investment Bank (NIB)"),
|
|
|
|
|
("OFID", "OPEC Fund for International Development (OFID)"),
|
|
|
|
|
("BOAD", "West African Development Bank (BOAD)"),
|
|
|
|
|
("WB", "World Bank"),
|
|
|
|
|
],
|
|
|
|
|
default="",
|
|
|
|
|
help_text="Select any financial institutions that have or are considering extending loans or guarantees to the project.",
|
|
|
|
|
max_length=119,
|
|
|
|
|
verbose_name="Financial institutions",
|
|
|
|
|
),
|
2018-03-31 09:52:06 +00:00
|
|
|
|
preserve_default=False,
|
|
|
|
|
),
|
|
|
|
|
]
|