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

# HIdP templates for Django-admin

## Overview

This package contains Django-admin-styled templates for HIdP.

## Installation

1. Install the package using pip:

```bash
pip install django-hidp-django-admin
```

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

Note: Make sure to add it above the `hidp` app so that templates are loaded correctly.

```python
INSTALLED_APPS = [
    ...
    "hidp_django_admin",
    ...
]
```

3. Add the following urls to your projects `urls.py` above the `hidp_urls`.

```python
url_patterns = [
    ...
    # Hello, ID Please
    path(
        "django-admin/login/",
        RedirectView.as_view(pattern_name="hidp_accounts:login"),
    ),
    path("django-admin/", admin.site.urls),
    ...
]
