here are the codes:
from django.core import meta

class Category(meta.Model):
    name = meta.CharField(maxlength=20)
    parent = meta.ForeignKey('self', null=True, related_name='child')


http://www.djangoproject.com/documentation/models/m2o_recursive/

Reply via email to