summaryrefslogtreecommitdiff
path: root/tests/proxy_model_inheritance/app1/models.py
blob: affcf140ac73ffcf669b57a3d6371b02ca633e16 (plain)
1
2
3
4
5
6
7
8
9
from __future__ import absolute_import

# TODO: why can't I make this ..app2
from app2.models import NiceModel


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