Forms
components.forms
Form components for data input and validation.
Button
Bases: Component
A button component that supports HTMX, Alpine.js, and form submissions.
Source code in components/forms.py
665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 | |
CheckboxInput
Bases: Input
Checkbox input with optional Alpine.js x-model binding.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
x_model
|
Optional[str]
|
Alpine.js variable name to bind to (e.g., "isDirectory") |
None
|
Source code in components/forms.py
847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 | |
clean(value)
Map standard html checkbox strings to python true/false booleans.
Source code in components/forms.py
881 882 883 884 885 | |
ClearInput
Bases: Component
Clear/reset button that resets the form to its initial state.
Source code in components/forms.py
407 408 409 410 411 412 413 414 415 416 417 | |
DeleteConfirmation
Bases: Component
A delete confirmation component with title, message, confirm and cancel buttons.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
Key to get the object from kwargs |
required | |
title
|
str
|
Title text (default: "Confirm Deletion") |
'Confirm Deletion'
|
message
|
str
|
Confirmation message |
'Are you sure you want to delete this item?'
|
cancel_url
|
URL or callable for the cancel button |
required |
Source code in components/forms.py
621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 | |
EmailInput
Bases: Input
Email input field with browser validation.
Source code in components/forms.py
776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 | |
FileInput
Bases: Input
File upload input with optional multiple file support.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
Field name |
required | |
label
|
Display label |
required | |
accept
|
str
|
File type filter (e.g., "image/*", ".pdf,.doc") |
''
|
multiple
|
bool
|
Allow multiple file selection |
False
|
Source code in components/forms.py
888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 | |
ForeignKeyInput
Bases: Input
A foreign key selector that opens a modal with a selection table.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
Field name (e.g., "semester") |
required | |
label
|
Display label |
required | |
selection_url
|
URL to fetch the selection table modal |
required | |
display_attr
|
str
|
Attribute to show for selected object (e.g., "name") |
'name'
|
placeholder
|
Placeholder text when no selection |
required |
Source code in components/forms.py
451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 | |
Form
Bases: Component
A flexible form component that supports: - Create forms (POST) - Update forms (POST with object prefill) - Filter forms (GET)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
action
|
URL to submit to (can be a string or callable that takes object) |
required | |
target
|
str
|
HTMX target selector |
required |
children
|
List of input components |
required | |
method
|
str
|
HTTP method - "post" (create/update) or "get" (filter) |
'post'
|
key
|
Key to get object from kwargs for prefilling (for edit forms) |
required | |
swap
|
str
|
HTMX swap mode (default "outerHTML") |
'outerHTML'
|
push_url
|
Optional[bool]
|
Whether to push URL on submit (default True for GET, False for POST) |
None
|
x_data
|
Optional[str]
|
Alpine.js x-data object for reactive form state (e.g., "{isDirectory: false}") |
None
|
Source code in components/forms.py
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 | |
FormErrors
Bases: Component
Renders form messages from kwargs: errors (red), success (green), info (blue). - errors: dict {"field1": "message", ...} - success: str message - info: str message
Source code in components/forms.py
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | |
Input
Bases: Component
Base class for all form input components.
Source code in components/forms.py
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 | |
clean(value)
Clean and validate the input value. Override in subclasses to perform specific sanitization.
Source code in components/forms.py
217 218 219 | |
Link
Bases: Component
A simple link component for use in forms/cards.
Source code in components/forms.py
927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 | |
ManyToManyInput
Bases: Input
A many-to-many selector that opens a modal with a multi-selection table.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
Field name |
required | |
label
|
Display label |
required | |
selection_url
|
URL to fetch the multi-selection table modal |
required | |
display_attr
|
str
|
Attribute to show for selected objects |
'name'
|
placeholder
|
Placeholder text when no selection |
required |
Source code in components/forms.py
535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 | |
PasswordInput
Bases: Input
Password input field with masked input.
Source code in components/forms.py
756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 | |
PhoneInput
Bases: Input
Phone number input field with tel type for mobile keyboard optimization.
Source code in components/forms.py
811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 | |
ShowIf
Bases: Component
Conditional wrapper that shows/hides children based on an Alpine.js expression.
Use with a parent form that has x_data defined.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
condition
|
str | None
|
Alpine.js expression to evaluate (e.g., "isDirectory", "!isDirectory") |
None
|
children
|
Child components to conditionally show |
required |
Source code in components/forms.py
944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 | |
SubmitInput
Bases: Component
Submit button - not an Input since it doesn't have a key.
Source code in components/forms.py
289 290 291 292 293 294 295 296 297 298 299 | |