]> git.parisson.com Git - mezzo.git/commitdiff
[Page Block] : add white style
authorEmilie <zawadzki@ircam.fr>
Tue, 14 Feb 2017 15:46:52 +0000 (16:46 +0100)
committerEmilie <zawadzki@ircam.fr>
Tue, 14 Feb 2017 15:46:52 +0000 (16:46 +0100)
app/organization/agenda/migrations/0023_auto_20170214_1643.py [new file with mode: 0644]
app/organization/core/models.py
app/organization/network/migrations/0087_auto_20170214_1643.py [new file with mode: 0644]
app/organization/pages/migrations/0019_auto_20170214_1643.py [new file with mode: 0644]
app/organization/projects/migrations/0043_auto_20170214_1643.py [new file with mode: 0644]

diff --git a/app/organization/agenda/migrations/0023_auto_20170214_1643.py b/app/organization/agenda/migrations/0023_auto_20170214_1643.py
new file mode 100644 (file)
index 0000000..a6d3ed0
--- /dev/null
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.9.11 on 2017-02-14 15:43
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('organization-agenda', '0022_auto_20170105_1743'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='eventblock',
+            name='background_color',
+            field=models.CharField(blank=True, choices=[('black', 'black'), ('yellow', 'yellow'), ('red', 'red'), ('white', 'white')], max_length=32, verbose_name='background color'),
+        ),
+    ]
index 5c57aae608f5882928d1caf775f506efa09cab84..cd227ae393323288be30f9149c6513fc3219e0f7 100644 (file)
@@ -33,7 +33,7 @@ from mezzanine.core.models import Displayable, Slugged, Orderable
 from django_countries.fields import CountryField
 
 
-COLOR_CHOICES = (('black', _('black')), ('yellow', _('yellow')), ('red', _('red')))
+COLOR_CHOICES = (('black', _('black')), ('yellow', _('yellow')), ('red', _('red')), ('white', _('white')),)
 ALIGNMENT_CHOICES = (('left', _('left')), ('center', _('center')), ('right', _('right')))
 IMAGE_TYPE_CHOICES = (('logo', _('logo')), ('logo_white', _('logo white')), ('logo_black', _('logo black')), ('logo_header', _('logo header')), ('logo_footer', _('logo footer')), ('slider', _('slider')), ('card', _('card')), ('page_slider', _('page - slider')), ('page_featured', _('page - featured')))
 
diff --git a/app/organization/network/migrations/0087_auto_20170214_1643.py b/app/organization/network/migrations/0087_auto_20170214_1643.py
new file mode 100644 (file)
index 0000000..4de6dc4
--- /dev/null
@@ -0,0 +1,25 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.9.11 on 2017-02-14 15:43
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('organization-network', '0086_auto_20170118_1247'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='organizationblock',
+            name='background_color',
+            field=models.CharField(blank=True, choices=[('black', 'black'), ('yellow', 'yellow'), ('red', 'red'), ('white', 'white')], max_length=32, verbose_name='background color'),
+        ),
+        migrations.AlterField(
+            model_name='personblock',
+            name='background_color',
+            field=models.CharField(blank=True, choices=[('black', 'black'), ('yellow', 'yellow'), ('red', 'red'), ('white', 'white')], max_length=32, verbose_name='background color'),
+        ),
+    ]
diff --git a/app/organization/pages/migrations/0019_auto_20170214_1643.py b/app/organization/pages/migrations/0019_auto_20170214_1643.py
new file mode 100644 (file)
index 0000000..293b777
--- /dev/null
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.9.11 on 2017-02-14 15:43
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('organization-pages', '0018_auto_20170105_1743'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='pageblock',
+            name='background_color',
+            field=models.CharField(blank=True, choices=[('black', 'black'), ('yellow', 'yellow'), ('red', 'red'), ('white', 'white')], max_length=32, verbose_name='background color'),
+        ),
+    ]
diff --git a/app/organization/projects/migrations/0043_auto_20170214_1643.py b/app/organization/projects/migrations/0043_auto_20170214_1643.py
new file mode 100644 (file)
index 0000000..f13b953
--- /dev/null
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.9.11 on 2017-02-14 15:43
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('organization-projects', '0042_auto_20170118_1239'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='projectblock',
+            name='background_color',
+            field=models.CharField(blank=True, choices=[('black', 'black'), ('yellow', 'yellow'), ('red', 'red'), ('white', 'white')], max_length=32, verbose_name='background color'),
+        ),
+    ]