core_explore_example_type_app is a Django app.
- Add "core_explore_example_type_app" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [
...
'core_explore_example_type_app',
]- Include the core_explore_example_type_app URLconf in your project urls.py like this::
url(r'^explore/type/example', include('core_explore_example_type_app.urls')),