I asked this question on django-users and got no response. Thought I might have better luck getting an "official" opinion on this here.
You can call blocks in your templates anything you like, but if you intend to share your software with the world, you'd better use `{% block content %}` if you expect interoperability between your project and 3rd party apps. My question is along similar lines, but relates to using custom Groups. There is no `settings.AUTH_GROUPS_MODEL` equivalent to `AUTH_USER_MODEL`. If you make a custom Group model that subclasses Django Group, you can still use `user.groups.all()`. But if a project uses a Group model that that does not subclass `Group`, that doesn't work of course. I can't seem to find anywhere in the docs where Django recommends doing it one way or another. I've always thought that a custom group should subclass Group, and that is common, but some projects apparently don't do it that way. I am asking because I am the maintainer of a reusable app that requires groups compatibility, and have come across an app that that uses a non-Django-derived groups system. We have come to impasse about the best way to support this (or whether to support it all). Are there any best practices on this question in the Django docs or elsewhere? Thanks, Scot -- You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itself)" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-developers+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/django-developers/103ccb2e-cc5e-4b80-97e1-ce983cf8a5e4n%40googlegroups.com.