Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/proxy_model_inheritance/app1/models.py
blob: a7a99fe46b781d16bbc3cc077445205bc40c2562 (plain)
1
2
3
4
5
6
7
# TODO: why can't I make this ..app2
from app2.models import NiceModel


class ProxyModel(NiceModel):
    class Meta:
        proxy = True