You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
857 B

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('djangocms_forms', '0004_auto_20150914_0835'),
]
operations = [
migrations.AlterField(
model_name='formdefinition',
name='form_template',
field=models.CharField(default=b'djangocms_forms/form_template/default.html', max_length=150, verbose_name='Form Template', blank=True, choices=[(b'djangocms_forms/form_template/default.html', b'Default'), (b'form_template/consultation.html', b'Consultation'), (b'form_template/just_fields.html', b'Just Fields'), (b'form_template/order_modal.html', b'Order Modal'), (b'form_template/product_class.html', b'Trademark Product Class')]),
preserve_default=True,
),
]