mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-15 10:43:22 +00:00
24 lines
590 B
Python
24 lines
590 B
Python
from pydantic import TypeAdapter
|
|
|
|
from club.models import Club
|
|
from club.schemas import ClubSchema
|
|
from core.views.widgets.select import AutoCompleteSelect, AutoCompleteSelectMultiple
|
|
|
|
_js = ["webpack/club/components/ajax-select-index.ts"]
|
|
|
|
|
|
class AutoCompleteSelectClub(AutoCompleteSelect):
|
|
component_name = "club-ajax-select"
|
|
model = Club
|
|
adapter = TypeAdapter(list[ClubSchema])
|
|
|
|
js = _js
|
|
|
|
|
|
class AutoCompleteSelectMultipleClub(AutoCompleteSelectMultiple):
|
|
component_name = "club-ajax-select"
|
|
model = Club
|
|
adapter = TypeAdapter(list[ClubSchema])
|
|
|
|
js = _js
|