﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
22599	Recursive model relations admin interface	ivicaned@…	nobody	"There is issue with admin in Django 1.7b3, when showing models that have recursive relationship to same model class. I think that the issue is related just to admin templates, because I am able to create this kind of models and they are inserted in db correctly, but on admin list page, they are not shown. 
Let me know if you need some more details about this.
Also this is my first bug submission, so I appologize if I didn't follow bug submission guidelines.


{{{
class Category(models.Model):
    name = models.CharField(max_length=200)
    slug = models.SlugField()
    parent = models.ForeignKey('self', blank = True, null = True, related_name=""children"")
   
    def __str__(self):
        return self.name
}}}


"	Bug	closed	contrib.admin	1.7-beta-2	Normal	invalid			Unreviewed	0	0	0	0	0	0
