Enhance AJAX navigation and pagination across dashboard templates

- Implemented AJAX-based navigation for links and forms to improve user experience.
- Added loading indicators during AJAX requests to enhance feedback.
- Refactored data tables and search results to load content dynamically via AJAX.
- Created partial templates for data tables and search results to streamline rendering.
- Updated pagination links to work with AJAX, maintaining browser history.
- Added JavaScript files for handling AJAX navigation and pagination.
- Improved session detail view with conditional rendering for action buttons.
- Updated Docker Compose file for consistency in version formatting.
- Created a TODO list for future enhancements and features.
This commit is contained in:
2025-05-17 02:28:38 +02:00
parent fe69bdbc94
commit 482bea1ba5
21 changed files with 1275 additions and 565 deletions

View File

@ -1,6 +1,6 @@
# docker-compose.yml
version: '3.8'
version: "3.8"
services:
web:
@ -11,7 +11,7 @@ services:
- static_volume:/app/staticfiles
- media_volume:/app/media
ports:
- '8000:8000'
- "8000:8000"
environment:
- DEBUG=0
- SECRET_KEY=your_secret_key_here
@ -31,7 +31,7 @@ services:
nginx:
image: nginx:latest
ports:
- '80:80'
- "80:80"
volumes:
- ./nginx/conf.d:/etc/nginx/conf.d
- static_volume:/app/staticfiles