Files
livegraphs-django/.editorconfig
Kaj Kowalski 482bea1ba5 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.
2025-05-17 02:31:16 +02:00

46 lines
912 B
INI

# EditorConfig is a standardized configuration file that helps define
# consistent coding styles across different editors and IDEs
# https://editorconfig.org/
root = true
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = space
indent_size = 2
# Python files
[*.py]
indent_size = 4
# HTML and Django/Jinja2 template files
[*.{html,htm}]
indent_size = 2
# Allow prettier to format Django/Jinja templates properly
# The following comment options can be used in individual files if needed:
# <!-- prettier-ignore -->
# {# prettier-ignore #}
# CSS, JavaScript, and JSON files
[*.{css,scss,js,json}]
indent_size = 4
# Markdown files
[*.md]
trim_trailing_whitespace = false
# YAML files
[*.{yml,yaml}]
indent_size = 2
# Makefile (requires tabs)
[Makefile]
indent_style = tab
# Docker-related files
[{Dockerfile,docker-compose.yml}]
indent_size = 2