﻿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
30502	"Admin interface hangs on models with ""parentNode"" field ."	Jari Tenhunen	nobody	"if you have a relation named ""parentNode"", the django admin page gets stuck/unresponsive (eternal loop in js code?) when adding/editing a row with the problematic relation.

Example model that triggers the bug:
{{{#!python
class Node(models.Model):

    name = models.CharField(max_length=255)
    # ""parentNode"" as the foreign key name causes problems with Django admin js code =(
    parentNode = models.ForeignKey('self', blank=True, null=True, on_delete=models.CASCADE)
}}}"	Bug	closed	contrib.admin	dev	Normal	invalid			Accepted	0	0	0	0	0	0
