﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
11078	Document that proxy model Meta inheritance works like normal models	George Song	Jonatas CD	"According to the [http://docs.djangoproject.com/en/dev/topics/db/models/#base-class-restrictions proxy model documentation]:
""Proxy models inherit any `Meta` options that they don't define from their non-abstract model parent (the model they are proxying for).""

In the case of `app_label`, this is not true.

{{{
#!python

from django.db import models

class Book(models.Model):
    name = models.CharField(max_length=50)

    class Meta:
        app_label = 'core'

class Book1(Book):
    class Meta:
        proxy = True

>>> from django.db import models
>>> for model in models.get_models(): print model._meta
...
core.book
proxy.book1
}}}"	Cleanup/optimization	closed	Documentation	dev	Normal	fixed	proxy model app_label		Accepted	1	0	0	1	0	0
