Metadata-Version: 2.2
Name: django_admin_boilerplate
Version: 0.1.0
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:
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:
from django.urls import path, include

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