I'm successfully using Wagtail's wagtail.contrib.modeladmin to make a regular Django model editable from the Wagtail admin. I'd like to hyperlink to the modeladmin "create" and "edit" views from my template. What is the URL "name" I can use to reference these views? There appears to be no urls module in wagtail.contrib.admin and no documentation on this.
Here's my directory app's models.py:
from django.db import models
class Organisation(models.Model):
title = models.CharField(max_length=255)
logo = models.ImageField(upload_to='logos', blank=True)
...
And my project's urls.py:
from django.conf.urls import include, url
urlpatterns = [
url(r'^admin/', include(wagtailadmin_urls)),
...
url(r'^directory/', include('directory.urls')),
]