DEBSOURCES
Skip Quicknav
sources / python-django / 1.4.5-1%2Bdeb7u16 / tests / modeltests / proxy_model_inheritance / app1 / models.py
123456789
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