Skip to content

Instantly share code, notes, and snippets.

@CBoJI
Created October 17, 2012 08:21
Show Gist options
  • Save CBoJI/3904372 to your computer and use it in GitHub Desktop.
Save CBoJI/3904372 to your computer and use it in GitHub Desktop.
вывод mptt дерева в админке
def __unicode__(self):
return '%s%s' % (' --- ' * self.level, self.title)
class MPTTMeta:
order_insertion_by = ['title']
class Meta:
verbose_name = _('category')
verbose_name_plural = _('categories')
ordering = ['tree_id', 'lft']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment