Changeset View
Changeset View
Standalone View
Standalone View
looper/migrations/0051_gateway_form_description.py
| # Generated by Django 2.1.3 on 2018-11-13 15:39 | # Generated by Django 2.1.3 on 2018-11-13 15:39 | ||||
| from django.db import migrations, models | from django.db import migrations, models | ||||
| class Migration(migrations.Migration): | class Migration(migrations.Migration): | ||||
| dependencies = [ | dependencies = [ | ||||
| ('looper', '0050_address_optional'), | ('looper', '0050_address_optional'), | ||||
| ] | ] | ||||
| operations = [ | operations = [ | ||||
| migrations.AddField( | migrations.AddField( | ||||
| model_name='gateway', | model_name='gateway', | ||||
| name='form_description', | name='form_description', | ||||
| field=models.TextField(blank=True, help_text='Shown in payment forms when this gateway is selected. This is interpreted as HTML, so be careful and HTML-escape what needs to be HTML-escaped.'), | field=models.TextField( | ||||
| blank=True, | |||||
| help_text='Shown in payment forms when this gateway is selected. This is interpreted as HTML, so be careful and HTML-escape what needs to be HTML-escaped.', | |||||
| ), | |||||
| ), | ), | ||||
| ] | ] | ||||