Thank you Stephen !

It true, i forgot the definition in admin.py

class KeywordAdmin(admin.ModelAdmin):
    list_display = ("title",)
    list_display_links = ("title",)
    list_filter = ["title"]


admin.site.register(Keyword, KeywordAdmin)


Le lundi 14 septembre 2015 12:22:04 UTC+2, Cajoline a écrit :
>
> Hi,
>
> In version 3 of mezzanine I could add "generic.Keyword"
> in settings.ADMIN_MENU_ORDER to get CRUD management of keyword I have the 
> impression that in mezzanine 4 is not longer possible
>
> Here is my code:
>
> ADMIN_MENU_ORDER = (
>      ("Content" ("pages.Page"
>                   "blog.BlogPost"
>                   "blog.BlogCategory"
>                   "generic.Keyword"
>                   "generic.ThreadedComment" (_ ("media library"), 
> "fb_browse"))),
>      ("Site" ("sites.Site", "redirects.Redirect", "conf.Setting")),
>      ("Users" ("auth.User", "auth.Group"))
> )
>
> Thx 
>

-- 
You received this message because you are subscribed to the Google Groups 
"Mezzanine Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to