AttributeError at /members/rvc/
'Company' object has no attribute 'main_title'
remotes/origin/mobile_from_stage4
Alexander Burdeiny 10 years ago
parent 4c12083618
commit 15a4cce045
  1. 2
      meta/models.py

@ -63,7 +63,7 @@ class MetaSetting(TranslatableModel):
object_params = {
'object_name': 'name',
'object_title': 'main_title',
'object_title_l': lambda obj: getattr(obj, 'main_title', '')[:1].lower() + getattr(obj, 'main_title', '')[1:] if getattr(obj, 'main_title') else '',
'object_title_l': lambda obj: getattr(obj, 'main_title', '')[:1].lower() + getattr(obj, 'main_title', '')[1:] if getattr(obj, 'main_title', None) else '',
'city': 'city',
'country': 'country',

Loading…
Cancel
Save