[Django]-Adding a Non-Model Form in Django Admin

4👍

You can add arbitrary views that within a ModelAdmin that do whatever you want. See the documentation for ModelAdmin.get_urls. You can do the same at a higher level by defining AdminSite.get_urls.

Leave a comment