('slug',models.CharField(blank=True,help_text='Leave blank to have the URL auto-generated from the title.',max_length=2000,null=True,verbose_name='URL')),
('slug',models.CharField(blank=True,help_text='Leave blank to have the URL auto-generated from the title.',max_length=2000,null=True,verbose_name='URL')),
('_meta_title',models.CharField(blank=True,help_text='Optional title to be used in the HTML title tag. If left blank, the main title field will be used.',max_length=500,null=True,verbose_name='Title')),
('_meta_title_fr',models.CharField(blank=True,help_text='Optional title to be used in the HTML title tag. If left blank, the main title field will be used.',max_length=500,null=True,verbose_name='Title')),
('_meta_title_en',models.CharField(blank=True,help_text='Optional title to be used in the HTML title tag. If left blank, the main title field will be used.',max_length=500,null=True,verbose_name='Title')),
('gen_description',models.BooleanField(default=True,help_text='If checked, the description will be automatically generated from content. Uncheck if you want to manually set a custom description.',verbose_name='Generate description')),
('status',models.IntegerField(choices=[(1,'Draft'),(2,'Published')],default=2,help_text='With Draft chosen, will only be shown for admin users on the site.',verbose_name='Status')),
('publish_date',models.DateTimeField(blank=True,db_index=True,help_text="With Published chosen, won't be shown until this time",null=True,verbose_name='Published from')),
('expiry_date',models.DateTimeField(blank=True,help_text="With Published chosen, won't be shown after this time",null=True,verbose_name='Expires on')),
('field_type',models.IntegerField(choices=[(1,'Single line text'),(2,'Multi line text'),(3,'Email'),(13,'Number'),(14,'URL'),(4,'Check box'),(5,'Check boxes'),(6,'Drop down'),(7,'Multi select'),(8,'Radio buttons'),(9,'File upload'),(10,'Date'),(11,'Date/time'),(15,'Date of birth'),(12,'Hidden')],verbose_name='Type')),
('choices',models.CharField(blank=True,help_text='Comma separated options where applicable. If an option itself contains commas, surround the option with `backticks`.',max_length=1000,verbose_name='Choices')),
('choices_fr',models.CharField(blank=True,help_text='Comma separated options where applicable. If an option itself contains commas, surround the option with `backticks`.',max_length=1000,null=True,verbose_name='Choices')),
('choices_en',models.CharField(blank=True,help_text='Comma separated options where applicable. If an option itself contains commas, surround the option with `backticks`.',max_length=1000,null=True,verbose_name='Choices')),
('send_email',models.BooleanField(default=True,help_text='To send an email to the email address supplied in the form upon submission, check this box.',verbose_name='Send email to user')),
('email_from',models.EmailField(blank=True,help_text='The address the email will be sent from',max_length=254,verbose_name='From address')),
('email_copies',models.CharField(blank=True,help_text='Provide a comma separated list of email addresses to be notified upon form submission. Leave blank to disable notifications.',max_length=200,verbose_name='Send email to others')),
('email_message',models.TextField(blank=True,help_text='Emails sent based on the above options will contain each of the form fields entered. You can also enter a message here that will be included in the email.',verbose_name='Message')),
('email_message_fr',models.TextField(blank=True,help_text='Emails sent based on the above options will contain each of the form fields entered. You can also enter a message here that will be included in the email.',null=True,verbose_name='Message')),
('email_message_en',models.TextField(blank=True,help_text='Emails sent based on the above options will contain each of the form fields entered. You can also enter a message here that will be included in the email.',null=True,verbose_name='Message')),
('zip_import',models.FileField(blank=True,help_text="Upload a zip file containing images, and they'll be imported into this gallery.",upload_to='galleries',verbose_name='Zip import')),
('slug',models.CharField(help_text='Leave blank to have the URL auto-generated from the title.',max_length=2000,null=True,verbose_name='URL',blank=True)),
('slug',models.CharField(blank=True,help_text='Leave blank to have the URL auto-generated from the title.',max_length=2000,null=True,verbose_name='URL')),
('_meta_title',models.CharField(blank=True,help_text='Optional title to be used in the HTML title tag. If left blank, the main title field will be used.',max_length=500,null=True,verbose_name='Title')),
('_meta_title_fr',models.CharField(blank=True,help_text='Optional title to be used in the HTML title tag. If left blank, the main title field will be used.',max_length=500,null=True,verbose_name='Title')),
('_meta_title_en',models.CharField(blank=True,help_text='Optional title to be used in the HTML title tag. If left blank, the main title field will be used.',max_length=500,null=True,verbose_name='Title')),
('gen_description',models.BooleanField(default=True,help_text='If checked, the description will be automatically generated from content. Uncheck if you want to manually set a custom description.',verbose_name='Generate description')),
('status',models.IntegerField(choices=[(1,'Draft'),(2,'Published')],default=2,help_text='With Draft chosen, will only be shown for admin users on the site.',verbose_name='Status')),
('publish_date',models.DateTimeField(blank=True,db_index=True,help_text="With Published chosen, won't be shown until this time",null=True,verbose_name='Published from')),
('expiry_date',models.DateTimeField(blank=True,help_text="With Published chosen, won't be shown after this time",null=True,verbose_name='Expires on')),
('in_menus',mezzanine.pages.fields.MenusField(blank=True,choices=[(1,'Action'),(2,'Departement'),(3,'Footer')],max_length=100,null=True,verbose_name='Show in menus')),
field=mezzanine.pages.fields.MenusField(blank=True,choices=[(1,'Action'),(2,'Departement'),(3,'Footer vertical'),(4,'Footer horizontal')],max_length=100,null=True,verbose_name='Show in menus'),