--- /dev/null
+# -*- coding: utf-8 -*-
+# Generated by Django 1.9.7 on 2016-09-23 09:41
+from __future__ import unicode_literals
+
+from django.db import migrations
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('organization-core', '0003_remove_linktype_picto'),
+ ]
+
+ operations = [
+ migrations.RenameModel(
+ old_name='Category',
+ new_name='CustomCategory',
+ ),
+ migrations.AlterModelOptions(
+ name='customcategory',
+ options={'verbose_name': 'custom category'},
+ ),
+ ]
abstract = True
-class Category(Named):
+class CustomCategory(Named):
"""Category description)"""
class Meta:
- verbose_name = _('category')
+ verbose_name = _('custom category')
def __str__(self):
return self.name
AUTHENTICATION_BACKENDS = ("mezzanine.core.auth_backends.MezzanineBackend",)
+SHOP_CURRENCY_LOCALE = ''
#############
# DATABASES #
"mezzanine.twitter",
"mezzanine.accounts",
# "mezzanine.mobile",
- "cartridge.shop",
# "eve",
'djangobower',
"meta",
"mezzanine_agenda",
+ "cartridge.shop",
# "orderable",
"organization.core",
"organization.media",