Update frontend and forms
This commit is contained in:
parent
aa6c1cf33b
commit
310be805c5
@ -1,7 +1,9 @@
|
|||||||
from django.urls import reverse
|
from django.urls import reverse
|
||||||
|
from django import forms
|
||||||
|
from django.utils.translation import ugettext as _
|
||||||
from crispy_forms.helper import FormHelper
|
from crispy_forms.helper import FormHelper
|
||||||
from crispy_forms.layout import Submit, Layout
|
from crispy_forms.layout import Submit, Layout, HTML, Fieldset
|
||||||
from crispy_forms.bootstrap import Tab, TabHolder
|
from crispy_forms.bootstrap import Tab, TabHolder, PrependedText, FormActions
|
||||||
from leaflet.forms.widgets import LeafletWidget
|
from leaflet.forms.widgets import LeafletWidget
|
||||||
from moderation.forms import BaseModeratedObjectForm
|
from moderation.forms import BaseModeratedObjectForm
|
||||||
|
|
||||||
@ -19,12 +21,16 @@ class BaseCaseStudyForm(BaseModeratedObjectForm):
|
|||||||
self.helper.form_action = 'add'
|
self.helper.form_action = 'add'
|
||||||
self.helper.label_class = 'col-lg-2'
|
self.helper.label_class = 'col-lg-2'
|
||||||
self.helper.field_class = 'col-lg-8'
|
self.helper.field_class = 'col-lg-8'
|
||||||
self.helper.add_input(Submit('submit', 'Submit'))
|
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
model = CaseStudy
|
model = CaseStudy
|
||||||
fields = '__all__'
|
fields = '__all__'
|
||||||
widgets = {'location': LeafletWidget(attrs={})}
|
widgets = {
|
||||||
|
'location': LeafletWidget(attrs={}),
|
||||||
|
'official_project_documents': forms.ClearableFileInput(attrs={'multiple': True}),
|
||||||
|
'other_documents': forms.ClearableFileInput(attrs={'multiple': True}),
|
||||||
|
'shapefiles': forms.ClearableFileInput(attrs={'multiple': True}),
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
class ShortCaseStudyForm(BaseCaseStudyForm):
|
class ShortCaseStudyForm(BaseCaseStudyForm):
|
||||||
@ -69,7 +75,7 @@ class LongCaseStudyForm(BaseCaseStudyForm):
|
|||||||
self.helper.form_action = reverse('long-form')
|
self.helper.form_action = reverse('long-form')
|
||||||
self.helper.layout = Layout(
|
self.helper.layout = Layout(
|
||||||
TabHolder(
|
TabHolder(
|
||||||
Tab("First Page",
|
Tab(_("Basic information"),
|
||||||
'entry_name',
|
'entry_name',
|
||||||
'location',
|
'location',
|
||||||
'sector_of_economy',
|
'sector_of_economy',
|
||||||
@ -86,28 +92,116 @@ class LongCaseStudyForm(BaseCaseStudyForm):
|
|||||||
'project_status',
|
'project_status',
|
||||||
'synopsis',
|
'synopsis',
|
||||||
'full_description',
|
'full_description',
|
||||||
|
'project_owners',
|
||||||
|
'shareholders',
|
||||||
|
'financial_institutions',
|
||||||
|
'energy_customers',
|
||||||
'image',
|
'image',
|
||||||
'image_caption',
|
'image_caption',
|
||||||
'image_credit',
|
'image_credit',
|
||||||
'video',
|
'video',
|
||||||
|
'video_caption',
|
||||||
|
'video_credit',
|
||||||
'media_coverage_mainstream',
|
'media_coverage_mainstream',
|
||||||
'media_coverage_independent',
|
'media_coverage_independent',
|
||||||
'community_voices'),
|
'community_voices',
|
||||||
|
'direct_comms',
|
||||||
|
'social_media_links',
|
||||||
|
FormActions(
|
||||||
|
HTML("<a class='btn btn-primary btnNext pull-right'>"+_("Next")+"</a>")
|
||||||
|
)
|
||||||
|
),
|
||||||
Tab(
|
Tab(
|
||||||
"Second Page",
|
_("Technical and economic analysis"),
|
||||||
'generation_technology',
|
Fieldset(
|
||||||
'biomass_detail',
|
_("Power Generation Questions"),
|
||||||
'generation_technology_other',
|
'generation_technology',
|
||||||
'total_generation_capacity',
|
'biomass_detail',
|
||||||
'total_investment',
|
'generation_technology_other',
|
||||||
'technical_or_economic_details',
|
'total_generation_capacity',
|
||||||
'power_technology',
|
'generation_equipment_supplier',
|
||||||
'power_technology_other',
|
'total_investment',
|
||||||
'energy_storage_capacity',
|
'technical_or_economic_details',
|
||||||
|
css_id="power_generation_questions"
|
||||||
|
),
|
||||||
|
Fieldset(
|
||||||
|
_("Power Grids/Energy Storage Questions"),
|
||||||
|
'power_technology',
|
||||||
|
'power_technology_other',
|
||||||
|
'energy_storage_capacity',
|
||||||
|
'maximum_power_output',
|
||||||
|
'discharge_time',
|
||||||
|
'contractor_or_supplier_of_technology',
|
||||||
|
'approximate_total_investment',
|
||||||
|
'additional_technical_details',
|
||||||
|
css_id="power_grids_energy_storage_questions"
|
||||||
|
),
|
||||||
|
Fieldset(
|
||||||
|
_("Mineral/Commodity Questions"),
|
||||||
|
'minerals_or_commodities',
|
||||||
|
'minerals_or_commodities_other',
|
||||||
|
'use_in_energy_economy',
|
||||||
|
'use_in_energy_economy_other',
|
||||||
|
'project_life_span',
|
||||||
|
'size_of_concessions',
|
||||||
|
'projected_production_of_commodities',
|
||||||
|
'type_of_extraction',
|
||||||
|
'associated_infrastructure',
|
||||||
|
css_id="mineral_commodity_questions"
|
||||||
|
),
|
||||||
|
FormActions(
|
||||||
|
HTML("<a class='btn btn-primary btnPrevious'>"+_("Previous")+"</a>"),
|
||||||
|
HTML("<a class='btn btn-primary btnNext pull-right'>"+_("Next")+"</a>")
|
||||||
|
)
|
||||||
|
),
|
||||||
|
Tab(
|
||||||
|
_("Socio-environmental analysis"),
|
||||||
|
Fieldset(
|
||||||
|
_("Positive Case Questions"),
|
||||||
|
'positive_case_type',
|
||||||
|
'socioeconomic_benefits',
|
||||||
|
'project_status_detail',
|
||||||
|
'obstacles_and_hindrances',
|
||||||
|
'identified_partnerships',
|
||||||
|
css_id="positive_case_questions"
|
||||||
|
),
|
||||||
|
Fieldset(
|
||||||
|
_("Negative Case Questions"),
|
||||||
|
'negative_case_reasons',
|
||||||
|
'negative_case_reasons_other',
|
||||||
|
'negative_socioenvironmental_impacts',
|
||||||
|
'isolated_or_widespread',
|
||||||
|
'when_did_organising_start',
|
||||||
|
'who_has_been_involved',
|
||||||
|
'participation_mechanisms',
|
||||||
|
'potential_partnerships',
|
||||||
|
'wants_conversation_with_ojuso',
|
||||||
|
css_id="negative_case_questions"
|
||||||
|
),
|
||||||
|
Fieldset(
|
||||||
|
_("Common Questions"),
|
||||||
|
'key_actors_involved',
|
||||||
|
css_id="common_questions"
|
||||||
|
),
|
||||||
|
FormActions(
|
||||||
|
HTML("<a class='btn btn-primary btnPrevious'>"+_("Previous")+"</a>"),
|
||||||
|
HTML("<a class='btn btn-primary btnNext pull-right'>"+_("Next")+"</a>")
|
||||||
|
)
|
||||||
|
),
|
||||||
|
Tab(
|
||||||
|
_("Uploads"),
|
||||||
|
'official_project_documents',
|
||||||
|
'other_documents',
|
||||||
|
'shapefiles',
|
||||||
|
'coordinate_reference_system',
|
||||||
|
'name_of_territory_or_area',
|
||||||
|
'shown_on_other_platforms',
|
||||||
|
'shown_on_other_platforms_detail',
|
||||||
|
FormActions(
|
||||||
|
HTML("<a class='btn btn-primary btnPrevious'>"+_("Previous")+"</a>"),
|
||||||
|
Submit('submit', _('Submit'), css_class="btn-success pull-right")
|
||||||
|
)
|
||||||
)))
|
)))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class Meta(BaseCaseStudyForm.Meta):
|
class Meta(BaseCaseStudyForm.Meta):
|
||||||
fields = '__all__'
|
fields = '__all__'
|
||||||
|
@ -6,9 +6,16 @@ from django_extensions.db.fields import AutoSlugField
|
|||||||
from django_countries.fields import CountryField
|
from django_countries.fields import CountryField
|
||||||
from django.utils.translation import ugettext as _
|
from django.utils.translation import ugettext as _
|
||||||
from django.template.defaultfilters import slugify
|
from django.template.defaultfilters import slugify
|
||||||
|
from multiselectfield import MultiSelectField
|
||||||
from . import validators
|
from . import validators
|
||||||
|
|
||||||
|
|
||||||
|
class Shapefile(models.Model):
|
||||||
|
file = models.FileField(
|
||||||
|
upload_to='shapefiles/',
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class CaseStudy(models.Model):
|
class CaseStudy(models.Model):
|
||||||
"""Model for case studies submitted to the Ojuso Platform"""
|
"""Model for case studies submitted to the Ojuso Platform"""
|
||||||
|
|
||||||
@ -88,6 +95,81 @@ class CaseStudy(models.Model):
|
|||||||
('OT', _('Others'))
|
('OT', _('Others'))
|
||||||
)
|
)
|
||||||
|
|
||||||
|
TYPE_OF_EXTRACTION_CHOICES = (
|
||||||
|
('SUR', _('Surface (open pit/open cast/open cut mining')),
|
||||||
|
('SUB', _('Sub-surface (underground mining)')),
|
||||||
|
('SEA', _('Seabed mining')),
|
||||||
|
('URB', _('Urban mining/recycling'))
|
||||||
|
)
|
||||||
|
|
||||||
|
MINERAL_COMMODITY_CHOICES = (
|
||||||
|
('ALU', _('Aluminium (Bauxite)')),
|
||||||
|
('ARS', _('Arsenic')),
|
||||||
|
('BER', _('Beryllium')),
|
||||||
|
('CAD', _('Cadmium')),
|
||||||
|
('CHR', _('Chromium')),
|
||||||
|
('COK', _('Coking')),
|
||||||
|
('COA', _('Coal (for steel)')),
|
||||||
|
('COP', _('Copper')),
|
||||||
|
('GAL', _('Gallium')),
|
||||||
|
('GER', _('Germanium')),
|
||||||
|
('GLD', _('Gold')),
|
||||||
|
('HRE', _('Heavy Rare Earth Elements (Gadolinium, Terbium, Dysprosium, Holmium, Erbium, Thulium, Ytterbium, Lutetium, Yttrium, Scandium)')),
|
||||||
|
('IRN', _('Iron')),
|
||||||
|
('LRE', _('Light Rare Earth Elements (Lanthanum, Cerium, Praseodymium, Neodymium, Promethium, Samarium, Europium)')),
|
||||||
|
('LED', _('Lead')),
|
||||||
|
('LIT', _('Lithium')),
|
||||||
|
('MAN', _('Manganese')),
|
||||||
|
('MER', _('Mercury')),
|
||||||
|
('MOL', _('Molybdenum')),
|
||||||
|
('NIC', _('Nickel')),
|
||||||
|
('NIO', _('Niobium')),
|
||||||
|
('PGM', _('Platinum group metals (ruthenium, rhodium, palladium, osmium, iridium, and platinum)')),
|
||||||
|
('RHE', _('Rhenium')),
|
||||||
|
('SIL', _('Silicon')),
|
||||||
|
('SIV', _('Silver')),
|
||||||
|
('TAN', _('Tantalum')),
|
||||||
|
('TEL', _('Tellurium')),
|
||||||
|
('THA', _('Thallium')),
|
||||||
|
('TIN', _('Tin')),
|
||||||
|
('TIT', _('Titanium')),
|
||||||
|
('TUN', _('Tungsten')),
|
||||||
|
('VAN', _('Vanadium')),
|
||||||
|
('ZNC', _('Zinc')),
|
||||||
|
('OTR', _('Other'))
|
||||||
|
)
|
||||||
|
|
||||||
|
USE_IN_ENERGY_ECONOMY_CHOICES = (
|
||||||
|
('WTM', _('Wind turbine manufacturing')),
|
||||||
|
('SPM', _('Solar panel manufacturing')),
|
||||||
|
('STM', _('Solar thermal system manufacturing')),
|
||||||
|
('HGM', _('Hydropower generator manufacturing')),
|
||||||
|
('GGM', _('Geothermal generator manufacturing')),
|
||||||
|
('ESS', _('Energy storage (inc. battery systems)')),
|
||||||
|
('OTR', _('Others'))
|
||||||
|
)
|
||||||
|
|
||||||
|
POSITIVE_CASE_TYPE_CHOICES = (
|
||||||
|
('CREP', _('Community renewable energy project')),
|
||||||
|
('EACP', _('Energy as a commons project')),
|
||||||
|
('PSEP', _('Public/state (federal, state, municipal) energy project')),
|
||||||
|
('CORS', _('A case of responsible sourcing/supply chain/lifecycle management')),
|
||||||
|
)
|
||||||
|
|
||||||
|
NEGATIVE_CASE_REASONS_CHOICES = (
|
||||||
|
('VOLR', _('Violation of land rights')),
|
||||||
|
('VOHR', _('Violation of fundamental human rights, indigenous rights and/or other collective rights')),
|
||||||
|
('EIMP', _('Environmental impacts (severe impacts on ecosystems / violation of laws, plans or programs of \
|
||||||
|
environmental conservation or territorial governance systems etc.')),
|
||||||
|
('NCUL', _('Negative cultural impacts (erosion/destruction of bio-cultural heritage, impacts on sacred land \
|
||||||
|
etc)')),
|
||||||
|
('AGGR', _('Aggression/threats to community members opposed to the project, collaboration with organized crime \
|
||||||
|
etc')),
|
||||||
|
('ALAB', _('Abusive labour practices')),
|
||||||
|
('CRUP', _('Corruption and/or irregular permitting or contracting, conflicts of interest etc')),
|
||||||
|
('OTHR', _('Other reasons'))
|
||||||
|
)
|
||||||
|
|
||||||
# Dynamically generate a list of choices 40 years prior and after the current year.
|
# Dynamically generate a list of choices 40 years prior and after the current year.
|
||||||
YEAR_CHOICES = [(r, r) for r in
|
YEAR_CHOICES = [(r, r) for r in
|
||||||
range((datetime.datetime.now().year - 40),
|
range((datetime.datetime.now().year - 40),
|
||||||
@ -110,11 +192,10 @@ class CaseStudy(models.Model):
|
|||||||
date_created = models.DateTimeField(auto_now_add=True, null=False)
|
date_created = models.DateTimeField(auto_now_add=True, null=False)
|
||||||
|
|
||||||
# Slug derived from entry_name, used in urls for SEO
|
# Slug derived from entry_name, used in urls for SEO
|
||||||
# TODO: Change this so it's not dynamic. Slugs should never change.
|
slug = AutoSlugField(populate_from=['entry_name'], editable=False)
|
||||||
slug = AutoSlugField(populate_from=['entry_name'])
|
|
||||||
|
|
||||||
##
|
##
|
||||||
# First Screen
|
# First Screen - Basic information
|
||||||
##
|
##
|
||||||
|
|
||||||
# 1.1
|
# 1.1
|
||||||
@ -193,13 +274,15 @@ class CaseStudy(models.Model):
|
|||||||
help_text=_("Select the most relevant type of ecosystem."),
|
help_text=_("Select the most relevant type of ecosystem."),
|
||||||
max_length=6,
|
max_length=6,
|
||||||
choices=TYPE_OF_ECOSYSTEM_CHOICES,
|
choices=TYPE_OF_ECOSYSTEM_CHOICES,
|
||||||
|
default=None,
|
||||||
|
null=True,
|
||||||
|
blank=True
|
||||||
)
|
)
|
||||||
|
|
||||||
# 1.5.5.3
|
# 1.5.5.3
|
||||||
describe_ecosystem = models.CharField(
|
describe_ecosystem = models.TextField(
|
||||||
verbose_name=_("Describe the ecosystem"),
|
verbose_name=_("Describe the ecosystem"),
|
||||||
help_text=_("In your own words, add more detail about the ecosystem."),
|
help_text=_("In your own words, add more detail about the ecosystem."),
|
||||||
max_length=256,
|
|
||||||
)
|
)
|
||||||
|
|
||||||
# 1.5.6
|
# 1.5.6
|
||||||
@ -254,8 +337,7 @@ class CaseStudy(models.Model):
|
|||||||
verbose_name=_("Synopsis"),
|
verbose_name=_("Synopsis"),
|
||||||
help_text=_("Briefly describe the project. This will be displayed at\
|
help_text=_("Briefly describe the project. This will be displayed at\
|
||||||
the top of the case study page. Maximum 500 chars (about \
|
the top of the case study page. Maximum 500 chars (about \
|
||||||
3½ tweets)"),
|
3½ tweets)")
|
||||||
max_length=500
|
|
||||||
)
|
)
|
||||||
|
|
||||||
# 1.10
|
# 1.10
|
||||||
@ -398,9 +480,10 @@ class CaseStudy(models.Model):
|
|||||||
)
|
)
|
||||||
|
|
||||||
##
|
##
|
||||||
# Second Screen
|
# Second Screen - Technical and economic analysis
|
||||||
##
|
##
|
||||||
|
|
||||||
|
# 2.1 - Renewable Energy Generation
|
||||||
# 2.1.1
|
# 2.1.1
|
||||||
generation_technology = models.CharField(
|
generation_technology = models.CharField(
|
||||||
verbose_name=_("Generation technology"),
|
verbose_name=_("Generation technology"),
|
||||||
@ -415,7 +498,7 @@ class CaseStudy(models.Model):
|
|||||||
# 2.1.1.12
|
# 2.1.1.12
|
||||||
# Should be filled in if 2.1.1 was answered as biogas or biomass.
|
# Should be filled in if 2.1.1 was answered as biogas or biomass.
|
||||||
biomass_detail = models.CharField(
|
biomass_detail = models.CharField(
|
||||||
verbose_name=_("Generation technology detail"),
|
verbose_name=_("Description of feedstock"),
|
||||||
help_text=_("If you selected biogas or biomass, please describe the feedstock (where the fuel came from e.g. \
|
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)"),
|
corn, algae, anaerobic digestion, commercial waste etc)"),
|
||||||
max_length=200,
|
max_length=200,
|
||||||
@ -443,7 +526,15 @@ class CaseStudy(models.Model):
|
|||||||
blank=True,
|
blank=True,
|
||||||
)
|
)
|
||||||
|
|
||||||
# 2.1.3 - autocomplete_light queryset
|
# 2.1.3
|
||||||
|
# TODO: Auto-completion based on previous entries so we can query case-studies with the same answer.
|
||||||
|
generation_equipment_supplier = models.TextField(
|
||||||
|
verbose_name=_("Generation equipment supplier"),
|
||||||
|
help_text=_("Enter the supplier of the generation equipment. (E.g. Siemens)"),
|
||||||
|
default=None,
|
||||||
|
null=True,
|
||||||
|
blank=True
|
||||||
|
)
|
||||||
|
|
||||||
# 2.1.4
|
# 2.1.4
|
||||||
total_investment = models.IntegerField(
|
total_investment = models.IntegerField(
|
||||||
@ -464,7 +555,7 @@ class CaseStudy(models.Model):
|
|||||||
blank=True
|
blank=True
|
||||||
)
|
)
|
||||||
|
|
||||||
# 2.2 - Only if 1.2.2 selected
|
# 2.2 - Power Grids / Energy Storage
|
||||||
# 2.2.1
|
# 2.2.1
|
||||||
power_technology = models.CharField(
|
power_technology = models.CharField(
|
||||||
verbose_name=_("Power technology"),
|
verbose_name=_("Power technology"),
|
||||||
@ -476,6 +567,7 @@ class CaseStudy(models.Model):
|
|||||||
blank=True
|
blank=True
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# 2.2.1.4
|
||||||
power_technology_other = models.CharField(
|
power_technology_other = models.CharField(
|
||||||
verbose_name=_("Other power technology"),
|
verbose_name=_("Other power technology"),
|
||||||
help_text=_("If you answered 'others', please specify the power technologies."),
|
help_text=_("If you answered 'others', please specify the power technologies."),
|
||||||
@ -485,6 +577,7 @@ class CaseStudy(models.Model):
|
|||||||
blank=True
|
blank=True
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# 2.2.2
|
||||||
energy_storage_capacity = models.IntegerField(
|
energy_storage_capacity = models.IntegerField(
|
||||||
verbose_name=_("Energy storage capacity"),
|
verbose_name=_("Energy storage capacity"),
|
||||||
help_text=_("Enter the total capacity of the energy storage system."),
|
help_text=_("Enter the total capacity of the energy storage system."),
|
||||||
@ -493,12 +586,321 @@ class CaseStudy(models.Model):
|
|||||||
blank=True
|
blank=True
|
||||||
)
|
)
|
||||||
|
|
||||||
##
|
# 2.2.2.1
|
||||||
# Third Screen
|
maximum_power_output = models.BigIntegerField(
|
||||||
##
|
verbose_name=_('Maximum power output'),
|
||||||
|
help_text=_('Enter the maximum power output of the storage system in Watts (W). (W=J/s)'),
|
||||||
|
default=None,
|
||||||
|
null=True,
|
||||||
|
blank=True
|
||||||
|
)
|
||||||
|
|
||||||
|
# 2.2.2.2
|
||||||
|
discharge_time = models.BigIntegerField(
|
||||||
|
verbose_name=_('Time for discharge from full capacity'),
|
||||||
|
help_text=_('Enter the time it takes to discharge from full capacity at maximum power output (in seconds) \
|
||||||
|
(1h=3600s)'),
|
||||||
|
default=None,
|
||||||
|
null=True,
|
||||||
|
blank=True
|
||||||
|
)
|
||||||
|
|
||||||
|
# 2.2.3
|
||||||
|
contractor_or_supplier_of_technology = models.CharField(
|
||||||
|
verbose_name=_('Contractor and/or supplier of technology'),
|
||||||
|
help_text=_('List companies that act as contractors or suppliers of technology related to energy storage.'),
|
||||||
|
max_length=256,
|
||||||
|
default=None,
|
||||||
|
null=True,
|
||||||
|
blank=None
|
||||||
|
)
|
||||||
|
|
||||||
|
# 2.2.4
|
||||||
|
approximate_total_investment = models.PositiveIntegerField(
|
||||||
|
verbose_name=_('Approximate total investment'),
|
||||||
|
help_text=_('Enter the approximate total investment in USD ($).'),
|
||||||
|
default=None,
|
||||||
|
null=True,
|
||||||
|
blank=None
|
||||||
|
)
|
||||||
|
|
||||||
|
# 2.2.5
|
||||||
|
additional_technical_details = models.CharField(
|
||||||
|
verbose_name=_("Additional technical or economic details"),
|
||||||
|
help_text=_("Add any additional details such as: length, from-to, voltage, substations etc"),
|
||||||
|
max_length=512,
|
||||||
|
default=None,
|
||||||
|
null=True,
|
||||||
|
blank=True
|
||||||
|
)
|
||||||
|
|
||||||
|
# 2.3.1.1
|
||||||
|
minerals_or_commodities = models.CharField(
|
||||||
|
verbose_name=_("Mineral commodity/commodities"),
|
||||||
|
help_text=_("Select the mineral commodity that is primarily mined in this project"),
|
||||||
|
max_length=3,
|
||||||
|
choices=MINERAL_COMMODITY_CHOICES,
|
||||||
|
default=None,
|
||||||
|
null=True,
|
||||||
|
blank=True
|
||||||
|
)
|
||||||
|
|
||||||
|
# 2.3.1.2
|
||||||
|
minerals_or_commodities_other = models.CharField(
|
||||||
|
verbose_name=_("Other mineral commodity"),
|
||||||
|
help_text=_("Enter the mineral commodity that isn't in the list."),
|
||||||
|
max_length=64,
|
||||||
|
default=None,
|
||||||
|
null=True,
|
||||||
|
blank=True
|
||||||
|
)
|
||||||
|
|
||||||
|
# 2.3.2.1
|
||||||
|
use_in_energy_economy = models.CharField(
|
||||||
|
verbose_name=_("Potential user in renewable energy economy"),
|
||||||
|
help_text=_("Select the potential use of the minerals in the renewable energy economy"),
|
||||||
|
max_length=3,
|
||||||
|
choices=USE_IN_ENERGY_ECONOMY_CHOICES,
|
||||||
|
default=None,
|
||||||
|
null=True,
|
||||||
|
blank=True
|
||||||
|
)
|
||||||
|
|
||||||
|
# 2.3.2.9
|
||||||
|
use_in_energy_economy_other = models.CharField(
|
||||||
|
verbose_name=_('Other use in energy economy'),
|
||||||
|
max_length=128,
|
||||||
|
default=None,
|
||||||
|
null=True,
|
||||||
|
blank=True
|
||||||
|
)
|
||||||
|
|
||||||
|
# 2.3.3.1
|
||||||
|
project_life_span = models.CharField(
|
||||||
|
verbose_name=_("Project life span"),
|
||||||
|
help_text=_("e.g. 12 years of production, 15 years overall"),
|
||||||
|
max_length=200,
|
||||||
|
default=None,
|
||||||
|
null=True,
|
||||||
|
blank=None
|
||||||
|
)
|
||||||
|
|
||||||
|
# 2.3.3.2
|
||||||
|
size_of_concessions = models.CharField(
|
||||||
|
verbose_name=_("Size of concessions"),
|
||||||
|
help_text=_("Describe the size of concession(s) granted to company/companies (e.g. 'one concession encompassing\
|
||||||
|
2,300 hectares')"),
|
||||||
|
max_length=200,
|
||||||
|
default=None,
|
||||||
|
null=True,
|
||||||
|
blank=None
|
||||||
|
)
|
||||||
|
|
||||||
|
# 2.3.3.3
|
||||||
|
projected_production_of_commodities = models.CharField(
|
||||||
|
verbose_name=_("Projected production of key commodities"),
|
||||||
|
help_text=_("Describe the projected production of commodities per annum and overall (e.g. '40 million tonnes of\
|
||||||
|
iron ore per year, 200 million tonnes over 5 year life of mine'"),
|
||||||
|
max_length=256,
|
||||||
|
default=None,
|
||||||
|
null=True,
|
||||||
|
blank=None
|
||||||
|
)
|
||||||
|
|
||||||
|
# 2.3.4
|
||||||
|
type_of_extraction = models.CharField(
|
||||||
|
verbose_name=_("Type of extraction"),
|
||||||
|
max_length=2,
|
||||||
|
choices=TYPE_OF_EXTRACTION_CHOICES,
|
||||||
|
default=None,
|
||||||
|
null=True,
|
||||||
|
blank=True
|
||||||
|
)
|
||||||
|
|
||||||
|
# 2.3.5
|
||||||
|
associated_infrastructure = models.CharField(
|
||||||
|
verbose_name=_("Associated infrastructure in the locality"),
|
||||||
|
help_text=_("List any associated infrastructure in the locality (e.g. tailings dams/mine waste storage and \
|
||||||
|
treatment facilities; ore processing facilities; smelting facilities; hydroelectric dams/energy infrastructure;\
|
||||||
|
transport infrastructure e.g. roads or rail."),
|
||||||
|
max_length=256,
|
||||||
|
default=None,
|
||||||
|
null=True,
|
||||||
|
blank=True
|
||||||
|
)
|
||||||
|
|
||||||
##
|
##
|
||||||
# Fourth Screen
|
# Third Screen - Socio-economic analysis
|
||||||
|
##
|
||||||
|
|
||||||
|
# 3.1.1
|
||||||
|
positive_case_type = models.CharField(
|
||||||
|
verbose_name=_('What kind of positive case is this entry about?'),
|
||||||
|
help_text=_('Select the most relevant type of positive case'),
|
||||||
|
choices=POSITIVE_CASE_TYPE_CHOICES,
|
||||||
|
max_length=4,
|
||||||
|
default=None,
|
||||||
|
null=True,
|
||||||
|
blank=True,
|
||||||
|
)
|
||||||
|
|
||||||
|
# 3.1.2
|
||||||
|
socioeconomic_benefits = models.TextField(
|
||||||
|
verbose_name=_('Socio-economic benefits'),
|
||||||
|
help_text=_('Please expand on your response given in the full description on page one. We would expect \
|
||||||
|
benefits to go beyond emissions savings, paying rent for land, or complying with environmental or social \
|
||||||
|
legislation'),
|
||||||
|
default=None,
|
||||||
|
null=True,
|
||||||
|
blank=True
|
||||||
|
)
|
||||||
|
|
||||||
|
# 3.1.3 + 3.2.5
|
||||||
|
key_actors_involved = models.CharField(
|
||||||
|
verbose_name=_('Key actors involved (individual/organisational)'),
|
||||||
|
max_length=256,
|
||||||
|
default=None,
|
||||||
|
null=True,
|
||||||
|
blank=True
|
||||||
|
)
|
||||||
|
|
||||||
|
# 3.1.4
|
||||||
|
project_status_detail = models.TextField(
|
||||||
|
verbose_name=_('Current status of the project'),
|
||||||
|
help_text=_("Describe the current status of the project, expanding beyond 'existing', 'under construction' etc"),
|
||||||
|
default=None,
|
||||||
|
null=True,
|
||||||
|
blank=True
|
||||||
|
)
|
||||||
|
|
||||||
|
# 3.1.5
|
||||||
|
obstacles_and_hindrances = models.CharField(
|
||||||
|
verbose_name=_('Obstacles and hindrances'),
|
||||||
|
help_text=_('List any obstacles or hindrances experienced in the course of the project'),
|
||||||
|
max_length=512,
|
||||||
|
default=None,
|
||||||
|
null=True,
|
||||||
|
blank=True
|
||||||
|
)
|
||||||
|
|
||||||
|
# 3.1.6
|
||||||
|
identified_partnerships = models.CharField(
|
||||||
|
verbose_name=_('Identified partnerships'),
|
||||||
|
help_text=_('Are you looking for partnerships or have any clearly identified need? If so, please describe it \
|
||||||
|
here.'),
|
||||||
|
max_length=256,
|
||||||
|
default=None,
|
||||||
|
null=True,
|
||||||
|
blank=True
|
||||||
|
)
|
||||||
|
|
||||||
|
# 3.1.7.1 + 3.2.8.1
|
||||||
|
|
||||||
|
# 3.1.7.2 + 3.2.8.1
|
||||||
|
|
||||||
|
# 3.1.7.3 + 3.2.8.1
|
||||||
|
|
||||||
|
# 3.1.7.4 + 3.2.8.1
|
||||||
|
|
||||||
|
# 3.1.7.5 + 3.2.8.1
|
||||||
|
|
||||||
|
# 3.1.7.6 + 3.2.8.1
|
||||||
|
|
||||||
|
# 3.2.1
|
||||||
|
negative_case_reasons = MultiSelectField(
|
||||||
|
choices=NEGATIVE_CASE_REASONS_CHOICES,
|
||||||
|
default=None,
|
||||||
|
null=True,
|
||||||
|
blank=True
|
||||||
|
)
|
||||||
|
|
||||||
|
# 3.2.1.9
|
||||||
|
negative_case_reasons_other = models.CharField(
|
||||||
|
verbose_name=_("Other reason for negative case"),
|
||||||
|
help_text=_("Please include other reasons, noting that we aim to focus on projects with substantive negative \
|
||||||
|
impacts on vulnerable groups."),
|
||||||
|
max_length=512,
|
||||||
|
default=None,
|
||||||
|
null=True,
|
||||||
|
blank=True
|
||||||
|
)
|
||||||
|
|
||||||
|
# 3.2.2
|
||||||
|
negative_socioenvironmental_impacts = models.TextField(
|
||||||
|
verbose_name=_("Describe the negative socio-environmental impacts"),
|
||||||
|
help_text=_("Provide a detailed description of the negative socio-environmental impacts (please provide all \
|
||||||
|
relevant details, such as type of ecosystem and presence of any existing reserve in the area, \
|
||||||
|
, specific communities affected by the project, total geographic footprint of the project, and \
|
||||||
|
tenure system affected in the case of land grabs, kind of permits that were irregularly issued if \
|
||||||
|
this is the case."),
|
||||||
|
default=None,
|
||||||
|
null=True,
|
||||||
|
blank=True
|
||||||
|
)
|
||||||
|
|
||||||
|
# 3.2.3
|
||||||
|
isolated_or_widespread = models.TextField(
|
||||||
|
verbose_name=_("Describe if the project is isolated or commonplace."),
|
||||||
|
help_text=_("Is this an isolated project or are there similar projects in the same geographic area? If there \
|
||||||
|
are more, can you describe them? Are there any significant cumulative synergistic effects?"),
|
||||||
|
default=None,
|
||||||
|
null=True,
|
||||||
|
blank=True
|
||||||
|
)
|
||||||
|
|
||||||
|
# 3.2.4.1
|
||||||
|
when_did_organising_start = models.CharField(
|
||||||
|
verbose_name=_("When did local organising efforts begin?"),
|
||||||
|
help_text=_("Before the project started? During project implementation? After project implementation? \
|
||||||
|
Describe in your own words."),
|
||||||
|
max_length=512,
|
||||||
|
default=None,
|
||||||
|
null=True,
|
||||||
|
blank=True
|
||||||
|
)
|
||||||
|
|
||||||
|
# 3.2.4.2
|
||||||
|
who_has_been_involved = models.CharField(
|
||||||
|
verbose_name=_("Which communities, groups and organisations have been involved?"),
|
||||||
|
max_length=512,
|
||||||
|
default=None,
|
||||||
|
null=True,
|
||||||
|
blank=True
|
||||||
|
)
|
||||||
|
|
||||||
|
# 3.2.4.3
|
||||||
|
participation_mechanisms = models.CharField(
|
||||||
|
verbose_name=_("What mechanisms of participation have been used?"),
|
||||||
|
help_text=_("e.g. direct action, local referendums, legal cases, letters or petitions etc"),
|
||||||
|
max_length=512,
|
||||||
|
default=None,
|
||||||
|
null=True,
|
||||||
|
blank=True
|
||||||
|
)
|
||||||
|
|
||||||
|
# 3.2.6
|
||||||
|
potential_partnerships = models.CharField(
|
||||||
|
verbose_name=_("Describe potential partnerships"),
|
||||||
|
help_text=_("Are you looking for partnerships or do you have any clearly identified need? If so, please \
|
||||||
|
describe it here."),
|
||||||
|
max_length=512,
|
||||||
|
default=None,
|
||||||
|
null=True,
|
||||||
|
blank=True
|
||||||
|
)
|
||||||
|
|
||||||
|
# 3.2.7
|
||||||
|
wants_conversation_with_ojuso = models.NullBooleanField(
|
||||||
|
verbose_name=_("Would you like to have a conversation with the ojuso team?"),
|
||||||
|
help_text=_("This would be a conversation about challenging or engaging related developers, companies and \
|
||||||
|
investors."),
|
||||||
|
default=None,
|
||||||
|
null=True,
|
||||||
|
blank=True
|
||||||
|
)
|
||||||
|
|
||||||
|
##
|
||||||
|
# Fourth Screen - Uploads
|
||||||
##
|
##
|
||||||
|
|
||||||
# 4.1
|
# 4.1
|
||||||
@ -507,7 +909,7 @@ class CaseStudy(models.Model):
|
|||||||
help_text=_("Attach any legal or official documents that relate to the project."),
|
help_text=_("Attach any legal or official documents that relate to the project."),
|
||||||
default=None,
|
default=None,
|
||||||
null=True,
|
null=True,
|
||||||
blank=True
|
blank=True,
|
||||||
)
|
)
|
||||||
|
|
||||||
# 4.2
|
# 4.2
|
||||||
@ -516,13 +918,33 @@ class CaseStudy(models.Model):
|
|||||||
help_text=_("Attach any other documents that relate to the project."),
|
help_text=_("Attach any other documents that relate to the project."),
|
||||||
default=None,
|
default=None,
|
||||||
null=True,
|
null=True,
|
||||||
|
blank=True,
|
||||||
|
)
|
||||||
|
|
||||||
|
# 4.3.1
|
||||||
|
shapefiles = models.FileField(
|
||||||
|
verbose_name=_("Shapefiles"),
|
||||||
|
help_text=_("If you have territory that you would like to show in relation to this project - e.g. Bienes \
|
||||||
|
Comunales de Ixtepec etc. This is a set of 3 or more (often 5-6) files with file extensions like \
|
||||||
|
.cpg, .dbf, .prj, .qpj, .shp, .shx"),
|
||||||
|
default=None,
|
||||||
|
null=True,
|
||||||
blank=True
|
blank=True
|
||||||
)
|
)
|
||||||
|
|
||||||
# 4.3
|
# 4.3.2
|
||||||
definition_of_affected_territories = models.CharField(
|
coordinate_reference_system = models.CharField(
|
||||||
verbose_name=_("Definition of affected territories"),
|
verbose_name=_("Coordinate reference system"),
|
||||||
help_text=_("In your own words, define the territories that the project will affect."),
|
help_text=_("Enter the coordinate reference system of the shapefiles."),
|
||||||
|
max_length=12,
|
||||||
|
default=None,
|
||||||
|
null=True,
|
||||||
|
blank=True
|
||||||
|
)
|
||||||
|
|
||||||
|
# 4.3.3
|
||||||
|
name_of_territory_or_area = models.CharField(
|
||||||
|
verbose_name=_("Name of territory or area"),
|
||||||
max_length=512,
|
max_length=512,
|
||||||
default=None,
|
default=None,
|
||||||
null=True,
|
null=True,
|
||||||
@ -567,3 +989,6 @@ class CaseStudy(models.Model):
|
|||||||
def get_video_id(self):
|
def get_video_id(self):
|
||||||
"""Gets the 11 character YouTube video ID from the video field."""
|
"""Gets the 11 character YouTube video ID from the video field."""
|
||||||
return parse.parse_qs(parse.urlparse(self.video).query)["v"][0]
|
return parse.parse_qs(parse.urlparse(self.video).query)["v"][0]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 23 KiB |
Binary file not shown.
Before Width: | Height: | Size: 5.0 KiB |
@ -17,20 +17,20 @@
|
|||||||
<div class="container-fluid">
|
<div class="container-fluid">
|
||||||
<div class="row" style="background-color: #e3f3fd;">
|
<div class="row" style="background-color: #e3f3fd;">
|
||||||
<div class="col-lg-8 border-top-0">
|
<div class="col-lg-8 border-top-0">
|
||||||
<a class="btn btn-info" style="margin:15px 0;padding-left:20px;left:-10px;position:absolute;" href="{% url 'index' %}" role="button"><i class="fa fa-arrow-left" aria-hidden="true"></i> {% trans "Back to Map" %}</a>
|
<button class="btn btn-info" style="margin:15px 0;padding-left:20px;left:-10px;position:absolute;" onclick="window.history.back()" role="button"><i class="fa fa-arrow-left" aria-hidden="true"></i> {% trans "Back to Map" %}</button>
|
||||||
<div style="margin-top:70px;padding:0 20px;">
|
<div style="margin-top:70px;padding:0 20px;">
|
||||||
<h1>{{case_study.entry_name}}</h1>
|
<h1>{{case_study.entry_name}}</h1>
|
||||||
<p>{{case_study.synopsis}}</p>
|
<p>{{case_study.synopsis}}</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="clearfix">
|
<div class="clearfix">
|
||||||
<div style="margin-left:20px;">
|
<div style="margin-left:20px;">
|
||||||
<span class="badge badge-pill bg-dark">{{case_study.get_sector_of_economy_display}}</span>
|
<span class="label label-default">{{case_study.get_sector_of_economy_display}}</span>
|
||||||
{% if case_study.positive_or_negative == "P" %}
|
{% if case_study.positive_or_negative == "P" %}
|
||||||
<span class="badge badge-pill bg-success">{{case_study.get_positive_or_negative_display}}</span>
|
<span class="label label-success">{{case_study.get_positive_or_negative_display}}</span>
|
||||||
{% elif case_study.positive_or_negative == "N"%}
|
{% elif case_study.positive_or_negative == "N"%}
|
||||||
<span class="badge badge-pill bg-danger">{{case_study.get_positive_or_negative_display}}</span>
|
<span class="label label-danger">{{case_study.get_positive_or_negative_display}}</span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<span class="badge badge-pill bg-info">{{case_study.country.name}}</span>
|
<span class="label label-info">{{case_study.country.name}}</span>
|
||||||
</br>
|
</br>
|
||||||
<small class="text-muted">Created {{case_study.date_created|naturaltime}} by <i>{{case_study.author}}</i></small>
|
<small class="text-muted">Created {{case_study.date_created|naturaltime}} by <i>{{case_study.author}}</i></small>
|
||||||
</div>
|
</div>
|
||||||
|
@ -34,27 +34,67 @@
|
|||||||
|
|
||||||
<!-- Conditional logic for hiding and un-hiding fields. -->
|
<!-- Conditional logic for hiding and un-hiding fields. -->
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
|
// Button classes for tab navigation
|
||||||
|
$('.btnNext').click(function(){
|
||||||
|
$('.nav-tabs > .active').next('li').find('a').trigger('click');
|
||||||
|
});
|
||||||
|
|
||||||
|
$('.btnPrevious').click(function(){
|
||||||
|
$('.nav-tabs > .active').prev('li').find('a').trigger('click');
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
// Here we define the fields we need to conditionally toggle.
|
// Here we define the fields we need to conditionally toggle.
|
||||||
// TODO: Move this knowledge out of the template
|
// TODO: Move this knowledge out of the template
|
||||||
var conditionalFields = [{
|
var conditionalFields = [{
|
||||||
"field": "#id_land_ownership",
|
"field": "#id_land_ownership",
|
||||||
"showHide": ["#div_id_land_ownership_details"],
|
"showHide": ["#div_id_land_ownership_details"],
|
||||||
"condition": "OTH"
|
"condition": ["OTH"]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"field": "#id_location_context",
|
||||||
|
"showHide": ["#div_id_type_of_ecosystem"],
|
||||||
|
"condition": ["RUR"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"field": "#id_power_technology",
|
"field": "#id_power_technology",
|
||||||
"showHide": ["#div_id_power_technology_other"],
|
"showHide": ["#div_id_power_technology_other"],
|
||||||
"condition": "OT"
|
"condition": ["OT"]
|
||||||
|
},
|
||||||
|
{ // 2.1 - Power Generation
|
||||||
|
"field": "#id_sector_of_economy",
|
||||||
|
"showHide": ["#power_generation_questions"],
|
||||||
|
"condition": ["WND","SOL","HYD"]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"field": "#id_generation_technology",
|
||||||
|
"showHide": ["#div_id_biomass_detail"],
|
||||||
|
"condition": ["BIOG", "OTHB"]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"field": "#id_generation_technology",
|
||||||
|
"showHide": ["#div_id_generation_technology_other"],
|
||||||
|
"condition": ["OTHR"]
|
||||||
|
},
|
||||||
|
{ // 2.2 - Power Grids
|
||||||
|
"field": "#id_sector_of_economy",
|
||||||
|
"showHide": ["#power_grids_energy_storage_questions"],
|
||||||
|
"condition": ["PG"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"field": "#id_sector_of_economy",
|
"field": "#id_sector_of_economy",
|
||||||
"showHide": ["#div_id_generation_technology",
|
"showHide": ["#mineral_commodity_questions"],
|
||||||
"#div_id_biomass_detail",
|
"condition": ["SM"]
|
||||||
"#div_id_generation_technology_other",
|
},
|
||||||
"#div_id_total_generation_capacity",
|
{ // 3.1
|
||||||
"#div_id_total_investment",
|
"field": "#id_positive_or_negative",
|
||||||
"#div_id_technical_or_economic_details"],
|
"showHide": ["#positive_case_questions"],
|
||||||
"condition": ["WND","SOL","HYD"]
|
"condition": ["P"]
|
||||||
|
},
|
||||||
|
{ // 3.2
|
||||||
|
"field": "#id_positive_or_negative",
|
||||||
|
"showHide": ["#negative_case_questions"],
|
||||||
|
"condition": ["N"]
|
||||||
}];
|
}];
|
||||||
|
|
||||||
|
|
||||||
|
@ -35,11 +35,11 @@
|
|||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block inner %}
|
{% block inner %}
|
||||||
<div class="btn-jumbo-group">
|
<div class="btn-jumbo-group">
|
||||||
<a class="btn btn-jumbo bg-warning" href="{% url 'long-form' %}" role="button">
|
<a class="btn btn-block btn-warning" href="{% url 'long-form' %}" role="button">
|
||||||
<h2>20+ Minutes</h2>
|
<h2>20+ Minutes</h2>
|
||||||
<p>Full Form (Preferred)</p>
|
<p>Full Form (Preferred)</p>
|
||||||
</a>
|
</a>
|
||||||
<a class="btn btn-jumbo bg-success" href="{% url 'short-form' %}" role="button">
|
<a class="btn btn-block btn-info" href="{% url 'short-form' %}" role="button">
|
||||||
<h2>5-10 Minutes</h2>
|
<h2>5-10 Minutes</h2>
|
||||||
<p>Express Form</p>
|
<p>Express Form</p>
|
||||||
</a>
|
</a>
|
||||||
|
@ -2,19 +2,26 @@
|
|||||||
{% load bootstrap3 %}
|
{% load bootstrap3 %}
|
||||||
{% load i18n %}
|
{% load i18n %}
|
||||||
{% load leaflet_tags %}
|
{% load leaflet_tags %}
|
||||||
|
{% load static %}
|
||||||
|
|
||||||
{% block stylesheets %}
|
{% block stylesheets %}
|
||||||
{{ block.super }}
|
{{ block.super }}
|
||||||
{% leaflet_css %}
|
{% leaflet_css %}
|
||||||
<style> html, body, #main { width: 100; height:100%; } </style>
|
<style>
|
||||||
|
html, body, #main {
|
||||||
|
width: 100; height:100%;
|
||||||
|
}
|
||||||
|
.leaflet-popup-content > a{
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
|
||||||
{% block title %}{% trans "Ojuso Platform Map" %}{% endblock %}
|
{% block title %}{% trans "Ojuso Platform Map" %}{% endblock %}
|
||||||
|
|
||||||
|
|
||||||
{% block content %}
|
{% block inner_content %}
|
||||||
<div id="main"></div>
|
<div id="main"></div>
|
||||||
<div id="modals"></div>
|
<div id="modals"></div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
@ -23,6 +30,7 @@
|
|||||||
{% block scripts %}
|
{% block scripts %}
|
||||||
{% leaflet_map "main" callback="main_app_init" creatediv=False %}
|
{% leaflet_map "main" callback="main_app_init" creatediv=False %}
|
||||||
{% leaflet_js %}
|
{% leaflet_js %}
|
||||||
|
<script type="text/javascript" src="{% static 'map/plugins/leaflet-hash.js' %}"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
|
|
||||||
// This takes HTML as a string and returns an element
|
// This takes HTML as a string and returns an element
|
||||||
@ -38,7 +46,7 @@
|
|||||||
|
|
||||||
// This is called when the map is initialized
|
// This is called when the map is initialized
|
||||||
function main_app_init(map, options) {
|
function main_app_init(map, options) {
|
||||||
|
var hash = new L.hash(map);
|
||||||
// Pull data as GeoJSON and add to map with a modal
|
// Pull data as GeoJSON and add to map with a modal
|
||||||
$.getJSON('/api/case-studies/', function (data) {
|
$.getJSON('/api/case-studies/', function (data) {
|
||||||
L.geoJson(data, {
|
L.geoJson(data, {
|
||||||
|
@ -1,15 +1,18 @@
|
|||||||
from django.conf.urls import url
|
from django.conf.urls import url
|
||||||
|
from django.urls import reverse_lazy
|
||||||
|
from django.views.generic import RedirectView
|
||||||
from djgeojson.views import GeoJSONLayerView
|
from djgeojson.views import GeoJSONLayerView
|
||||||
|
|
||||||
from .models import CaseStudy
|
from .models import CaseStudy
|
||||||
from . import views
|
from . import views
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
url(r'^$', views.Map.as_view(), name='index'),
|
url(r'^$', RedirectView.as_view(url=reverse_lazy('map')), name='index'),
|
||||||
url(r'^data.geojson$', GeoJSONLayerView.as_view(model=CaseStudy, geometry_field='location'), name='data'),
|
url(r'^data.geojson$', GeoJSONLayerView.as_view(model=CaseStudy, geometry_field='location'), name='data'),
|
||||||
url(r'^case-study/create/?$', views.Create.as_view(), name="create"),
|
url(r'^case-study/create/?$', views.Create.as_view(), name="create"),
|
||||||
url(r'^case-study/create/short/?$', views.ShortForm.as_view(), name='short-form'),
|
url(r'^case-study/create/short/?$', views.ShortForm.as_view(), name='short-form'),
|
||||||
url(r'^case-study/create/long/?$', views.LongForm.as_view(), name='long-form'),
|
url(r'^case-study/create/long/?$', views.LongForm.as_view(), name='long-form'),
|
||||||
url(r'^case-study/create/success/?$', views.FormSuccess.as_view(), name='form-success'),
|
url(r'^case-study/create/success/?$', views.FormSuccess.as_view(), name='form-success'),
|
||||||
url(r'^case-study/(?P<slug>[-\w]+)/?$', views.CaseStudyDetail.as_view(), name='detail')
|
url(r'^case-study/(?P<slug>[-\w]+)/?$', views.CaseStudyDetail.as_view(), name='detail'),
|
||||||
|
url(r'^map/?$', views.Map.as_view(), name='map')
|
||||||
]
|
]
|
||||||
|
@ -237,7 +237,7 @@ REST_FRAMEWORK = {
|
|||||||
# Django Crispy Forms
|
# Django Crispy Forms
|
||||||
# http://django-crispy-forms.readthedocs.io/en/latest/
|
# http://django-crispy-forms.readthedocs.io/en/latest/
|
||||||
|
|
||||||
CRISPY_TEMPLATE_PACK = 'bootstrap4'
|
CRISPY_TEMPLATE_PACK = 'bootstrap3'
|
||||||
|
|
||||||
# Django-Leaflet
|
# Django-Leaflet
|
||||||
# https://django-leaflet.readthedocs.io/en/latest/
|
# https://django-leaflet.readthedocs.io/en/latest/
|
||||||
|
@ -1,9 +1,13 @@
|
|||||||
{% extends 'base_page.html' %}
|
{% extends 'base_page.html' %}
|
||||||
|
|
||||||
{% block title %}
|
{% block title %}
|
||||||
Shucks.
|
Oh no.
|
||||||
{% endblock %}
|
{% endblock title %}
|
||||||
|
|
||||||
{% block description %}
|
{% block description %}
|
||||||
You've taken a wrong turn and we can't find the page you're looking for.
|
This page doesn't exist.
|
||||||
{% endblock %}
|
{% endblock description %}
|
||||||
|
|
||||||
|
{% block inner %}
|
||||||
|
<a class="btn btn-primary btn-block" href="{% url 'index' %}">{% trans 'Go to the homepage' %}</a>
|
||||||
|
{% endblock inner %}
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{% extends 'base_page.html' %}
|
{% extends 'base_page.html' %}
|
||||||
|
{% load i18n %}
|
||||||
|
|
||||||
{% block title %}
|
{% block title %}
|
||||||
Shucks.
|
{% trans 'Oops' %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block description %}
|
{% block description %}
|
||||||
An unknown server error occurred. Sorry about that.
|
{% trans 'An unknown server error occurred. Our engineers have been notified and will fix the problem.' %}
|
||||||
{% endblock %}
|
{% endblock %}
|
@ -11,66 +11,71 @@
|
|||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>{% block page_title %}Ojuso{% endblock %}</title>
|
<title>{% block page_title %}Ojuso{% endblock %}</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
|
<link rel="stylesheet" href="{% static 'map/bootstrap/css/bootstrap.min.css' %}" />
|
||||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous"></script>
|
<link rel="stylesheet" href="{% static 'map/bootstrap/css/bootstrap-theme.min.css' %}" />
|
||||||
<!--{# <script src="{% static 'map/bundle.js'%}"></script> #}-->
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous"/>
|
||||||
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Noto+Sans" />
|
||||||
|
|
||||||
{# Additional Stylesheets #}
|
{# Additional Stylesheets #}
|
||||||
{% block stylesheets %}
|
{% block stylesheets %}
|
||||||
<style>
|
<style>
|
||||||
.navbar-brand {padding: 5px 15px;}
|
.navbar-brand {padding: 5px 15px;}
|
||||||
.navbar-brand > img {height: 40px;}
|
.navbar-brand > img {height: 40px;}
|
||||||
|
.dropdown-menu>li>a.no-hover:hover, .dropdown-menu>li>a.no-hover:focus {
|
||||||
|
background: red;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
</head>
|
||||||
</head>
|
|
||||||
<body>
|
<body>
|
||||||
<nav class="navbar navbar-expand-lg navbar-light bg-light">
|
<nav class="navbar navbar-default">
|
||||||
<a class="navbar-brand" href="{% url 'index' %}">
|
<div class="container-fluid">
|
||||||
<img src="{% static 'map/images/ojuso-logo-black.png' %}" height="20px"/>
|
<div class="navbar-header">
|
||||||
</a>
|
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
|
||||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
<span class="sr-only">Toggle navigation</span>
|
||||||
<span class="navbar-toggler-icon"></span>
|
<span class="icon-bar"></span>
|
||||||
</button>
|
<span class="icon-bar"></span>
|
||||||
|
<span class="icon-bar"></span>
|
||||||
|
</button>
|
||||||
|
<a class="navbar-brand" href="{% url 'index' %}">
|
||||||
|
<img src="{% static 'map/images/ojuso-logo-black.png' %}" height="15px"/>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
|
||||||
|
<ul class="nav navbar-nav">
|
||||||
|
<li><a href="{% url 'index' %}">{% trans 'Map' %}</a></li>
|
||||||
|
{% get_flatpages as flatpages %}
|
||||||
|
{% for page in flatpages %}
|
||||||
|
<li><a class="nav-link" href="{{page.url}}">{{page.title}}</a></li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
<ul class="nav navbar-nav navbar-right">
|
||||||
|
{% if user.is_authenticated %}
|
||||||
|
<a class="btn btn-primary navbar-btn" href="{% url 'create' %}"><i class="fa fa-plus" aria-hidden="true"> New Case Study</i></a>
|
||||||
|
<li class="dropdown">
|
||||||
|
<a style="margin:-10px 0 -10px 0" class="dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
<img src="{% avatar_url user %}" class="img-circle" width="40" height="40" style="position:relative;margin-right:5px"/><span>{{user}}</span>
|
||||||
|
</a>
|
||||||
|
<ul class="dropdown-menu dropdown-menu-right" style="padding-bottom:0px" aria-labelledby="navbarDropdown">
|
||||||
|
<li><a href="{% url 'avatar_change' %}"><i class="fa fa-cog" aria-hidden="true"></i> Change Avatar</a></li>
|
||||||
|
<li><a href="{% url 'profile:detail' %}"><i class="fa fa-cog" aria-hidden="true"></i> Profile</a></li>
|
||||||
|
<li role="separator" style="margin-bottom:0px"></li>
|
||||||
|
<li><a class="dropdown-item no-hover" style="background-color:red;color:white;padding:0.5rem 1.5rem" href="{% url 'auth_logout' %}"><i class="fa fa-exclamation-triangle" aria-hidden="true"></i> {% trans 'Logout' %}</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
|
||||||
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
{% else %}
|
||||||
<ul class="navbar-nav mr-auto">
|
<a style="margin: 5px;" class="btn btn-primary navbar-btn" href="{% url 'auth_login' %}">{% trans 'Login' %}</a></li>
|
||||||
<li class="nav-item">
|
<a style="margin: 5px;" class="btn btn-info navbar-btn" href="{% url 'registration_register' %}">{% trans 'Register' %}</a></li>
|
||||||
<a class="nav-link" href="{% url 'index' %}">{% trans 'Map' %}<span class="sr-only">(current)</span></a>
|
{% endif %}
|
||||||
</li>
|
</ul>
|
||||||
{% get_flatpages as flatpages %}
|
</div>
|
||||||
{% for page in flatpages %}
|
|
||||||
<li class="nav-item"><a class="nav-link" href="{{page.url}}">{{page.title}}</a></li>
|
|
||||||
{% endfor %}
|
|
||||||
</ul>
|
|
||||||
<ul class="navbar-nav my-2 my-lg-0">
|
|
||||||
{% if user.is_authenticated %}
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="btn btn-outline-info" href="{% url 'create' %}"><i class="fa fa-plus" aria-hidden="true"> New Case Study</i></a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item dropdown">
|
|
||||||
<a style="margin:-10px 0 -10px 0" class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
||||||
<img src="{% avatar_url user %}" class="rounded-circle" width="40" height="40" style="position:relative;margin-right:5px"/><span>{{user}}</span>
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu dropdown-menu-right" style="padding-bottom:0px" aria-labelledby="navbarDropdown">
|
|
||||||
<a class="dropdown-item" href="{% url 'avatar_change' %}"><i class="fa fa-cog" aria-hidden="true"></i> Change Avatar</a>
|
|
||||||
<a class="dropdown-item" href="{% url 'profile:detail' %}"><i class="fa fa-cog" aria-hidden="true"></i> Profile</a>
|
|
||||||
<div class="dropdown-divider" style="margin-bottom:0px"></div>
|
|
||||||
<a class="dropdown-item bg-danger" style="color:white;padding:0.5rem 1.5rem" href="{% url 'auth_logout' %}"><i class="fa fa-exclamation-triangle" aria-hidden="true"></i> {% trans 'Logout' %}</a>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
{% else %}
|
|
||||||
<li class="nav-item"><a style="margin: 5px;" class="btn btn-outline-primary" href={% url 'auth_login' %}>{% trans 'Login' %}</a></li>
|
|
||||||
<li class="nav-item"><a style="margin: 5px;" class="btn btn-info" href={% url 'registration_register' %}>{% trans 'Register' %}</a></li>
|
|
||||||
{% endif %}
|
|
||||||
</ul>
|
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
{% if messages %}
|
{% if messages %}
|
||||||
{% for message in messages %}
|
{% for message in messages %}
|
||||||
<div class="alert alert-{{ message.tags }} alert-dismissible fade show" role="alert">
|
<div class="alert alert-{{ message.tags }} alert-dismissible" role="alert">
|
||||||
{{ message }}
|
{{ message }}
|
||||||
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
||||||
<span aria-hidden="true">×</span>
|
<span aria-hidden="true">×</span>
|
||||||
@ -78,15 +83,14 @@
|
|||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% block content %}
|
||||||
{% block content %}
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
{# CDN Javascript #}
|
{# CDN Javascript #}
|
||||||
<script src="//code.jquery.com/jquery-3.2.1.min.js" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f" crossorigin="anonymous"></script>
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0/jquery.min.js" integrity="sha256-JmvOoLtYsmqlsWxa7mDSLMwa6dZ9rrIdtrrVYRnDRH0=" crossorigin="anonymous"></script>
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js" integrity="sha384-vFJXuSJphROIrBnz7yo7oB41mKfc8JzQZiCq4NCceLEaO4IHwicKwpJf9c9IpFgh" crossorigin="anonymous"></script>
|
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js" integrity="sha384-alpBpkh1PFOepccYVYDB4do5UnbKysX5WZXm3XxPqe5iKTfUKjNkCk9SaVuEZflJ" crossorigin="anonymous"></script>
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js" integrity="sha384-alpBpkh1PFOepccYVYDB4do5UnbKysX5WZXm3XxPqe5iKTfUKjNkCk9SaVuEZflJ" crossorigin="anonymous"></script>
|
||||||
{% block scripts %}{% endblock %}
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
|
||||||
|
{% block scripts %}{% endblock %}
|
||||||
</html>
|
</html>
|
||||||
{% endspaceless %}
|
{% endspaceless %}
|
||||||
|
@ -16,12 +16,12 @@
|
|||||||
<div class="container">
|
<div class="container">
|
||||||
|
|
||||||
<div class="page-lead">
|
<div class="page-lead">
|
||||||
<h1 class="text-center">{% block title %}{% endblock %}</h1>
|
<h1 class="text-center">{% block title %}{% endblock %}</h1>
|
||||||
<p class="lead text-center">{% block description %}{% endblock %}</p>
|
<p class="lead text-center">{% block description %}{% endblock %}</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{% block inner %}
|
{% block inner %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
</div><!-- /.container -->
|
</div><!-- /.container -->
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -4,21 +4,24 @@
|
|||||||
{{ block.super }}
|
{{ block.super }}
|
||||||
<style>
|
<style>
|
||||||
.jumbo {
|
.jumbo {
|
||||||
height: calc(100% - 64px);
|
height: calc(100% - 52px);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 0;
|
right: 0;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
|
}
|
||||||
|
.navbar {
|
||||||
|
margin-bottom:0;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block body %}
|
{% block content %}
|
||||||
|
|
||||||
<div class="jumbo">
|
<div class="jumbo">
|
||||||
|
|
||||||
{% block content %}
|
{% block inner_content %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
</div><!-- /.container -->
|
</div><!-- /.container -->
|
||||||
|
@ -17,6 +17,8 @@ django-geojson==2.10.0
|
|||||||
#django-leaflet==0.22.0
|
#django-leaflet==0.22.0
|
||||||
-e git://github.com/makinacorpus/django-leaflet.git@a43acc5fed6674b413a6fab0feeb7c44e67c2ca8#egg=django-leaflet
|
-e git://github.com/makinacorpus/django-leaflet.git@a43acc5fed6674b413a6fab0feeb7c44e67c2ca8#egg=django-leaflet
|
||||||
django-moderation==0.5.0
|
django-moderation==0.5.0
|
||||||
|
django-multiselectfield==0.1.8
|
||||||
|
django-multiupload==0.5.2
|
||||||
django-registration-redux==1.6
|
django-registration-redux==1.6
|
||||||
django-storages==1.6.5
|
django-storages==1.6.5
|
||||||
djangorestframework==3.6.3
|
djangorestframework==3.6.3
|
||||||
|
Loading…
Reference in New Issue
Block a user