help_text="Enter the approximate total investment in USD ($).",
null=True,
verbose_name="Approximate total investment",
),
),
migrations.AlterField(
model_name="casestudy",
name="biomass_detail",
field=models.CharField(
blank=True,
default=None,
help_text="If you selected biogas or biomass, please describe the feedstock (where the fuel came from e.g. corn, algae, anaerobic digestion, commercial waste etc.)",
max_length=200,
null=True,
verbose_name="Description of feedstock",
),
),
migrations.AlterField(
model_name="casestudy",
name="community_voices",
field=models.TextField(
blank=True,
default=None,
help_text="Add any direct quotes from members of the community that relate to this project",
null=True,
verbose_name="Community voices",
),
),
migrations.AlterField(
model_name="casestudy",
name="contractor_or_supplier_of_technology",
field=models.CharField(
blank=True,
default=None,
help_text="List companies that act as contractors or suppliers of technology related to energy storage.",
max_length=256,
null=True,
verbose_name="Contractor and/or supplier of technology",
),
),
migrations.AlterField(
model_name="casestudy",
name="energy_customers",
field=models.CharField(
blank=True,
default=None,
help_text="List any wholesale customers that take energy from the development. E.g. 'national grids' or private energy suppliers.",
max_length=120,
null=True,
verbose_name="Energy consumers",
),
),
migrations.AlterField(
model_name="casestudy",
name="entry_name",
field=models.CharField(
help_text="Enter the name of the entry. This should usually be the name of the project.",
max_length=128,
verbose_name="Name",
),
),
migrations.AlterField(
model_name="casestudy",
name="full_description",
field=models.TextField(
help_text="Describe the project in full. Separate paragraphs with a new line Please add as much detail as you feel is necessary here.",
verbose_name="Full description",
),
),
migrations.AlterField(
model_name="casestudy",
name="generation_technology",
field=models.CharField(
blank=True,
choices=[
(
"Wind energy",
(
("SSWE","Small-scale (less than 500 kW)"),
("LSWE","Large-scale (more than 500kW)"),
),
),
(
"Photovoltaic electricity",
(
("SSPV","Small-scale (less than 500 kW)"),
("LSPV","Large-scale (more than 500kW)"),
),
),
(
"Hydroelectric",
(
("SHYD","Small-scale (less than 1MW)"),
("MHYD","Medium-scale (between 1-20MW)"),
(
"LHYD",
"Large-scale (more than 20MW - often not considered renewable)",
),
),
),
(
"STHE",
"Solar thermal electricity (e.g. using parabolic reflectors)",