Update new migrations and add bootstrap and leaflet-hash.js

This commit is contained in:
Livvy Mackintosh
2017-11-18 16:56:09 +00:00
parent 310be805c5
commit 63992802b9
33 changed files with 11155 additions and 0 deletions

View File

@ -0,0 +1,25 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.6 on 2017-11-02 23:26
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('map', '0025_auto_20171102_2300'),
]
operations = [
migrations.AddField(
model_name='casestudy',
name='positive_case_type',
field=models.CharField(blank=True, 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')], default=None, help_text='Select the most relevant type of positive case', max_length=4, null=True, verbose_name='What kind of positive case is this entry about?'),
),
migrations.AddField(
model_name='casestudy',
name='socioeconomic_benefits',
field=models.TextField(blank=True, default=None, 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', null=True, verbose_name='Socio-economic benefits'),
),
]