Metadata-Version: 2.2
Name: django_admin_boilerplate
Version: 0.1.2
Summary: A boilerplate for Django admin dashboards
Author-email: Aremu damilare <a.matthew2013@gmail.com>
License: MIT License
        
        Copyright (c) 2025 Your Name
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software...
        
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: django

# Django Admin Boilerplate

🚀 A simple boilerplate for Django admin dashboards with theme settings, user management, and database model overview.

## Features
- 📊 Admin dashboard with dynamic database stats.
- 🎨 User-based theme selection.
- 🔄 Easy integration into existing Django projects.
- 📈 User analytics visualization.

---

## 📦 Installation

1. Install via pip:
   ```sh
   pip install django-admin-boilerplate
   ```

2. Add to `INSTALLED_APPS` in your Django project:
   ```python
   INSTALLED_APPS = [
       "django_admin_boilerplate",
       "django.contrib.admin",
       "django.contrib.auth",
       ...
   ]
   ```

3. 🔗 Add URLs to `urls.py`
   Modify your project's `urls.py` to include the admin dashboard:
   ```python
   from django.urls import path, include

   urlpatterns = [
       path("admin-dashboard/", include("django_admin_boilerplate.urls")),
   ]
   ```

---

## 🛠️ Usage

1. Run migrations:
   ```sh
   python manage.py migrate
   ```

2. Create a superuser if needed:
   ```sh
   python manage.py createsuperuser
   ```

3. Start the Django server:
   ```sh
   python manage.py runserver
   ```

4. Access the admin dashboard at:
   ```
   http://127.0.0.1:8000/admin-dashboard/
   ```

---

## 📜 License
This project is licensed under the MIT License.

## 🤝 Contributing
Contributions are welcome! Feel free to submit a pull request or open an issue.

## 📧 Contact
For questions or support, reach out via [GitHub Issues](https://github.com/Aremu-damilare/django_admin_boilerplate).

[PYPI homepage](https://pypi.org/project/django-admin-boilerplate/)

