Repository URL to install this package:
Version:
2.4.1b1 ▾
|
from django.conf.urls import url
from wagtail.tests.testapp.views import bob_only_zone, message_test
urlpatterns = [
url(r'^bob-only-zone$', bob_only_zone, name='testapp_bob_only_zone'),
url(r'^messages/$', message_test, name='testapp_message_test')
]