django/tests/modeltests/proxy_model_inheritance/app1/models.py

6 lines
101 B
Python

from app2.models import NiceModel
class ProxyModel(NiceModel):
class Meta:
proxy = True