Metadata-Version: 2.4
Name: django-hidp-wagtail
Version: 1.0.2
Summary: A Wagtail-themed template pack for HIdP
Author-email: Ramon de Jezus <rdejezus@leukeleu.nl>, Wouter de Vries <wdevries@leukeleu.nl>
License-Expression: BSD-3-Clause
Project-URL: Repository, https://github.com/leukeleu/django-hidp-wagtail/
Project-URL: Issues, https://github.com/leukeleu/django-hidp-wagtail/issues
Project-URL: Releasenotes, https://github.com/leukeleu/django-hidp-wagtail/releases
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: Django
Classifier: Framework :: Wagtail
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: django-hidp<1.5.0,>=1.4.0

# HIdP templates for Wagtail

## Overview

This package contains Wagtail-styled templates for HIdP.

## Installation

1. Install the package using pip:

```bash
pip install django-hidp-wagtail
```

2. Add the package to your `INSTALLED_APPS` in your Django settings:

```python
INSTALLED_APPS = [
    ...
    "hidp_wagtail",  # Should be above "hidp" for templates to work
]
```

3. Set the correct settings for your project:

```python
WAGTAILADMIN_LOGIN_URL = 'hidp_accounts:login'
```
