12345678910111213141516171819202122232425262728293031323334353637 |
- # -*- coding: utf-8 -*-
- # Generated by Django 1.11.3 on 2017-08-23 11:27
- from __future__ import unicode_literals
- from django.db import migrations, models
- class Migration(migrations.Migration):
- dependencies = [
- ("base", "0002_auto_20170329_0055"),
- ]
- operations = [
- migrations.AlterField(
- model_name="formfield",
- name="field_type",
- field=models.CharField(
- choices=[
- ("singleline", "Single line text"),
- ("multiline", "Multi-line text"),
- ("email", "Email"),
- ("number", "Number"),
- ("url", "URL"),
- ("checkbox", "Checkbox"),
- ("checkboxes", "Checkboxes"),
- ("dropdown", "Drop down"),
- ("multiselect", "Multiple select"),
- ("radio", "Radio buttons"),
- ("date", "Date"),
- ("datetime", "Date/time"),
- ],
- max_length=16,
- verbose_name="field type",
- ),
- ),
- ]
|