No description
Find a file
Yaro Kasear 4d8d5b4e6a Add routes and functionality for inventory management, user management, worklogs, and settings
- Created a new Blueprint for main routes in `routes/__init__.py`.
- Implemented inventory listing and item management in `routes/inventory.py`.
- Added user listing and detail views in `routes/user.py`.
- Developed worklog listing and entry views in `routes/worklog.py`.
- Introduced search functionality across inventory, users, and worklogs in `routes/search.py`.
- Established settings management for brands, items, rooms, and functions in `routes/settings.py`.
- Enhanced helper functions for rendering headers and managing data in `routes/helpers.py`.
- Updated index route to display active worklogs and inventory conditions in `routes/index.py`.
2025-07-07 14:05:17 -05:00
models Update Inventory model: make type_id optional and adjust constructor to handle None values for type_id 2025-07-07 09:53:20 -05:00
routes Add routes and functionality for inventory management, user management, worklogs, and settings 2025-07-07 14:05:17 -05:00
static Refactor ComboBoxWidget and settings form: remove unused handleComboAdd function, enhance form state serialization, and improve room option handling 2025-07-03 10:38:29 -05:00
templates Enhance app configuration and prettify HTML responses; update requirements and fix button identifiers in settings template 2025-07-07 12:02:06 -05:00
utils Refactor models to implement ValidatableMixin; add validation logic for state management in Area, Brand, Item, Room, and RoomFunction classes 2025-06-25 14:52:49 -05:00
.gitignore Refactor code structure; improve organization and readability across multiple files 2025-06-23 14:51:21 -05:00
__init__.py Enhance app configuration and prettify HTML responses; update requirements and fix button identifiers in settings template 2025-07-07 12:02:06 -05:00
app.py Initial commit. 2025-06-11 09:10:41 -05:00
config.py Refactor configuration; enhance quote function type hints, improve database URI setup for SQLite, and add BASE_DIR for better path management 2025-06-20 13:55:50 -05:00
requirements.txt Enhance app configuration and prettify HTML responses; update requirements and fix button identifiers in settings template 2025-07-07 12:02:06 -05:00
routes.py Add routes and functionality for inventory management, user management, worklogs, and settings 2025-07-07 14:05:17 -05:00
temp.py Implement sync_from_state methods for Area, Brand, Item, RoomFunction, and Room models; enhance entity management and foreign key resolution in settings 2025-06-25 09:31:05 -05:00