gestiojeux/inventory/forms.py
Sylvain Gay 474083dd38 Add minimal loans system
Functional loans system for users.
No manager interface yet.

See:
- app "loans"
- a few new views/templates in app "inventory"
2024-05-02 11:13:34 +02:00

5 lines
146 B
Python

from loans.forms import BorrowForm
class BorrowGameForm(BorrowForm):
error_css_class = "errorfield"
required_css_class = "requiredfield"