django/tests/regressiontests/admin_changelist/models.py

9 lines
272 B
Python
Raw Normal View History

from django.db import models
from django.contrib import admin
class Parent(models.Model):
name = models.CharField(max_length=128)
class Child(models.Model):
parent = models.ForeignKey(Parent, editable=False)
name = models.CharField(max_length=30, blank=True)