|
|
4
|
+# For filtering and querying
|
|
|
5
|
+django-filter # Simplified filtering
|
|
|
6
|
+
|
|
|
7
|
+# For tables/grid view
|
|
|
8
|
+django-tables2 # HTML table rendering
|
|
|
9
|
+
|
|
|
10
|
+# For exporting to Excel
|
|
|
11
|
+openpyxl # Generating Excel files
|
|
|
12
|
+
|
|
|
13
|
+# For API development (optional)
|
|
|
14
|
+djangorestframework # REST API support
|
|
|
15
|
+drf-yasg # Swagger and ReDoc for API documentation (optional)
|
|
|
16
|
+
|
|
|
17
|
+# Admin enhancements (optional)
|
|
|
18
|
+django-import-export # Export/import for admin
|
|
|
19
|
+
|
|
|
20
|
+# Authentication enhancements (optional)
|
|
|
21
|
+django-allauth # For user authentication (optional)
|
|
|
22
|
+
|
|
|
23
|
+# Debugging and performance
|
|
|
24
|
+django-debug-toolbar # Debugging SQL queries and performance issues
|
|
|
25
|
+
|
|
|
26
|
+# Testing (optional)
|
|
|
27
|
+pytest
|
|
|
28
|
+pytest-django
|
|
|
29
|
+factory-boy # Test data creation
|
|
|
30
|
+
|
|
|
31
|
+# Frontend styling (if using Bootstrap or TailwindCSS)
|
|
|
32
|
+django-crispy-forms # Styling for forms
|
|
|
33
|
+crispy-bootstrap5 # For Bootstrap 5 support (optional)
|
|
|
34
|
+
|
|
|
35
|
+# If using TailwindCSS instead of Bootstrap
|
|
|
36
|
+django-tailwind # For TailwindCSS integration
|
|
|
37
|
+
|
|
|
38
|
+# Cache optimization (optional)
|
|
|
39
|
+django-cacheops # Caching ORM QuerySets
|