|
|
@@ -82,7 +82,7 @@ class Migration(migrations.Migration):
|
|
82
|
82
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
83
|
83
|
('name', models.CharField(unique=True, max_length=128, verbose_name='Name')),
|
|
84
|
84
|
('slug', oscar.models.fields.autoslugfield.AutoSlugField(populate_from='name', unique=True, verbose_name='Slug', max_length=128, editable=False, blank=True)),
|
|
85
|
|
- ('description', models.TextField(blank=True)),
|
|
|
85
|
+ ('description', models.TextField(verbose_name="Description", blank=True)),
|
|
86
|
86
|
('is_public', models.BooleanField(default=False, verbose_name='Is public?', help_text='Public ranges have a customer-facing page')),
|
|
87
|
87
|
('includes_all_products', models.BooleanField(default=False, verbose_name='Includes all products?')),
|
|
88
|
88
|
('proxy_class', oscar.models.fields.NullCharField(unique=True, verbose_name='Custom class', default=None, max_length=255)),
|