Metadata-Version: 2.1
Name: django-custom-navbar
Version: 0.0.2
Summary: Provides a navigation bar for django applications.
Home-page: https://github.com/Segelzwerg/django-navbar
License: MIT
Author: Segelzwerg
Author-email: 25705862+Segelzwerg@users.noreply.github.com
Requires-Python: >=3.12,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: Django (>=5.0.6,<6.0.0)
Requires-Dist: django-dynamic-theme (>=0.0.8,<0.0.9)
Requires-Dist: django-modeltranslation (>=0.19.4,<0.20.0)
Project-URL: Repository, https://github.com/Segelzwerg/django-navbar
Description-Content-Type: text/markdown

# django-navbar
Provides a navigation bar for django applications.

## Installation
```python
pip install django_custom_navbar
```
Run after installations or update `manage.py migrate`.

## Settings
```python
INSTALLED_APPS = [
  ...
  "django_navbar",
  ...
]
```

