changed tags to protected, and not all lowercase
This commit is contained in:
@@ -9,23 +9,28 @@ from companies.models import Company
|
||||
class TreeTag(TagTreeModel):
|
||||
class TagMeta:
|
||||
initial = ""
|
||||
force_lowercase = True
|
||||
force_lowercase = False
|
||||
max_count=20
|
||||
protect_all = True
|
||||
# autocomplete_view = 'myapp.views.hobbies_autocomplete'
|
||||
|
||||
|
||||
class CategoryTag(TagTreeModel):
|
||||
|
||||
class TagMeta:
|
||||
initial = ""
|
||||
force_lowercase = True
|
||||
force_lowercase = False
|
||||
protect_all = True
|
||||
# autocomplete_view = 'myapp.views.hobbies_autocomplete'
|
||||
|
||||
|
||||
class AttributeTag(TagTreeModel):
|
||||
|
||||
class TagMeta:
|
||||
initial = ""
|
||||
force_lowercase = True
|
||||
force_lowercase = False
|
||||
max_count=20
|
||||
protect_all = True
|
||||
# autocomplete_view = 'myapp.views.hobbies_autocomplete'
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user