Skip to content
This repository has been archived by the owner on Jun 29, 2021. It is now read-only.

usnistgov/core_custom_queries_app

Repository files navigation

Core Custom Queries App

Custom Queries feature for the curator core project.

Configuration

1. Add "core_custom_queries_app" to your INSTALLED_APPS setting like this

INSTALLED_APPS = [
    ...
    "core_custom_queries_app",
]

2. Include the core_custom_queries_app URLconf in your project urls.py like this

url(r'^', include("core_custom_queries_app.urls")),