I have a custom Django admin form registered, how do I programmatically find the URL for the template in a view?
I know my form is at /admin/custom_app/horse/
but how do I programmatically look that up, incase the from URL is changed in the future?
Here's how the form is registered:
admin.site.register(Horse, HorseAdmin)