Metadata-Version: 2.1
Name: voicebot-accounts
Version: 0.2
Summary: A reusable Django accounts app.
Home-page: https://github.com/bimals-crest/django-accounts
Author: Bimal Singh
Author-email: bimal.s@crestinfosystems.com
License: MIT
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.0
Classifier: Framework :: Django :: 3.1
Classifier: Framework :: Django :: 3.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/markdown
Requires-Dist: django==4.2.2
Requires-Dist: djangorestframework==3.14.0
Requires-Dist: djangorestframework-simplejwt==5.2.2
Requires-Dist: whitenoise==6.5.0
Requires-Dist: markdown==3.4.3
Requires-Dist: django-filter==23.2
Requires-Dist: drf-yasg==1.21.6
Requires-Dist: coreapi==2.3.3
Requires-Dist: psycopg2-binary
Requires-Dist: google-api-core==2.19.0
Requires-Dist: google-api-python-client==2.128.0
Requires-Dist: google-auth==2.29.0
Requires-Dist: google-auth-httplib2==0.2.0
Requires-Dist: google-auth-oauthlib==1.2.0
Requires-Dist: google-pasta==0.2.0
Requires-Dist: googleapis-common-protos==1.63.0
Requires-Dist: django-extensions
Requires-Dist: django-cors-headers

## Configuring Template Base in Django

This guide will help you configure a base template path in your Django settings and use it in your templates.

### Step 1: Define `TEMPLATE_BASE` in `settings.py`

Add the following line to your `settings.py` file:

```python
# settings.py
TEMPLATE_BASE = 'base.html'  # Define your base template path
```

### Step 2: Add the Context Processor to settings.py

```python
# settings.py
TEMPLATES = [
    {
        .....
        'OPTIONS': {
            'context_processors': [
                .......
                'voicebot_accounts.context_processors.template_base',  # Add your custom context processor here
                .......
            ],
        },
        .....
    },
]
```
