﻿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
4702	gettext_lazy on _meta.app_label doesn't group together in admin	anonymous	Adrian Holovaty	"When you apply gettext_lazy on the app_label Meta attribute, it causes the class to ungroup in the admin even if the label is identical to another.

    Example:
{{{
#!python
        class QuestionSet(models.Model):
            ...fields...

            class Meta:
                app_label = _(""Q and A"")

        class Question(models.Model):
            ...fields...

            class Meta:
                app_label = _(""Q and A"")
}}}
This gives you two separate groups called ""Q And A"" in the admin instead of grouping them together."		new	contrib.admin	dev			unicode-branch		Accepted	0	0	0	0	0	0
