Metadata-Version: 2.1
Name: core_website_app
Version: 2.11.0
Summary: Basic web functionalities for the curator core project
Home-page: https://github.com/usnistgov/core_website_app
Author: NIST IT Lab
Author-email: itl_inquiries@nist.gov
License-File: LICENSE.md
Requires-Dist: Django
Requires-Dist: djangorestframework
Requires-Dist: django-simple-captcha==0.6.*
Requires-Dist: django-simple-menu
Requires-Dist: markdown
Requires-Dist: core-main-app==2.11.*

================
Core Website App
================

Basic web functionalities for the curator core project.

Quickstart
==========

1. Add "core_website_app" to your INSTALLED_APPS setting
--------------------------------------------------------

.. code:: python

    INSTALLED_APPS = [
        ...
        'core_website_app',
    ]

2. Include the core_website_app URLconf in your project urls.py
---------------------------------------------------------------

.. code:: python

    url(r'^website/', include('core_website_app.urls')),


3. Install and configure Captcha
--------------------------------

See instructions: https://django-simple-captcha.readthedocs.io/en/latest/usage.html#installation
