django_airavata/wagtailapps/base/migrations/0011_auto_20180415_0143.py (23 lines of code) (raw):

# -*- coding: utf-8 -*- # Generated by Django 1.11.3 on 2018-04-15 01:43 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('django_airavata_wagtail_base', '0010_auto_20180415_0142'), ] operations = [ migrations.AlterField( model_name='cybergatewayhomepage', name='show_footer', field=models.CharField(choices=[('yes', 'Yes'), ('no', 'No')], default='yes', help_text="Choose yes if you want the Footer to show on home page or no if you don't want to", max_length=5), ), migrations.AlterField( model_name='cybergatewayhomepage', name='show_nav_extra', field=models.CharField(choices=[('yes', 'Yes'), ('no', 'No')], default='yes', help_text="Choose yes if you want the secondary navbar to show on home page or no if you don't want to", max_length=5), ), migrations.AlterField( model_name='cybergatewayhomepage', name='show_navbar', field=models.CharField(choices=[('yes', 'Yes'), ('no', 'No')], default='yes', help_text="Choose yes if you want to display the navbar on home page and no if you don't want to.", max_length=5), ), ]