Gauravwagh / django-grappelli

Automatically exported from code.google.com/p/django-grappelli
Other
0 stars 0 forks source link

title in modellist within group is wrong #297

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
e.g.,

        self.children.append(modules.Group(
            title=u"Configuration",
            css_classes=['column_1', "collapse", "open"],
            children = [
                modules.ModelList(
                    title=u"Technical",
                    css_classes=["collapse", "open"],
                    models=(
                        "www.configuration.models.Decade",
                        "www.configuration.models.Gauge",
                        "www.configuration.models.Material",
                        "www.configuration.models.Speed",
                        "www.configuration.models.Sound",
                        "www.configuration.models.Color",
                        "www.configuration.models.Origin",
                        "www.configuration.models.Genre",
                        "www.configuration.models.Location",
                        "www.configuration.models.Landmark",
                        "www.configuration.models.Space",
                        "www.configuration.models.SpatialUse",
                        "www.configuration.models.SubjectType",
                        "www.configuration.models.Credit",
                    ),
                ),
            ]
        ))

the title within ModelList is not displayed correctly.

Original issue reported on code.google.com by sehmaschine on 30 Oct 2010 at 8:38

GoogleCodeExporter commented 9 years ago
can't reproduce.

Original comment by klemens.mantzos on 4 Nov 2010 at 3:01