Recently I needed functionality just like in
django.contrib.redirects - redirects table, that can be edited in admin. I was sad to find out that its strongly not configurable. For example, I dont need status 301, but need something else. I dont need 'site' field (since there is only one site), but I need field 'is_active'. Also I need that redirect works for all pages, not only 404.
Right now I've did that by my own and I don't want to make it separate app since Django has similar functionality.
How about making that application a little bit more configurable and convinient?
It doesn't seems to be difficult, so I can do it myself.