Admin¶
fastapi_admin_kit.Admin
¶
Main admin interface. Register models and mount to your FastAPI app.
Uses component-based architecture with: - config: AdminConfig (UI, auth, audit, behavior, storage, nav settings) - database: AdminDatabase (engine, table creation, role seeding) - router: AdminRouter (routing, static files, Jinja) - template: AdminTemplate (branding, sidebar context)
Source code in fastapi_admin_kit/admin/core.py
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 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 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 533 534 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 619 620 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 663 664 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 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 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 809 810 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 845 846 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 886 887 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 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 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 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 | |
setup(app=None)
async
¶
Run all startup wiring: create tables, seed roles, mount assets.
This must be called once during application lifespan, typically via
the :meth:lifespan context manager.
Source code in fastapi_admin_kit/admin/core.py
419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 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 533 534 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 | |
register(model, admin_class=None)
¶
Register a model with the admin.
Usage::
admin.register(Product)
@admin.register(Product)
class ProductAdmin(ModelAdmin):
list_display = ["name", "price"]
Source code in fastapi_admin_kit/admin/core.py
lifespan(app)
async
¶
FastAPI lifespan context manager.
Usage::
app = FastAPI(lifespan=admin.lifespan)
get_registered(table_name)
¶
all_registered()
¶
unregister(model)
¶
Unregister a model so it can be re-registered with a custom admin class.
Useful for overriding built-in admin models::
from fastapi_admin_kit.auth.models import User
from fastapi_admin_kit.admin.builtin_models import UserAdmin
class MyUserAdmin(UserAdmin):
list_display = ["id", "email", "full_name"]
admin.unregister(User)
admin.register(User, MyUserAdmin)
Source code in fastapi_admin_kit/admin/core.py
build_sidebar_context(request, user=None, permissions_map=None)
¶
Build per-request sidebar context (RBAC filter + permissions map).
Source code in fastapi_admin_kit/admin/core.py
sidebar_template_kwargs(request)
¶
Thin wrapper — returns sidebar kwargs for TemplateResponse contexts.
apply_sidebar_context(request, user, context)
¶
Inject nav_groups + permissions_map into a template context dict.
AdminConfig¶
fastapi_admin_kit.admin.AdminConfig
¶
Orchestrates all configuration classes with validation.
Source code in fastapi_admin_kit/admin/admin_config.py
validate_all()
¶
Validate all configuration components.
get_ui_context()
¶
get_branding_config()
¶
Get branding configuration.
Source code in fastapi_admin_kit/admin/admin_config.py
get_session_config()
¶
Get session configuration.
get_audit_config()
¶
get_storage_config()
¶
get_behavior_config()
¶
Get behavior configuration.
Source code in fastapi_admin_kit/admin/admin_config.py
get_nav_config()
¶
Get navigation configuration.
Source code in fastapi_admin_kit/admin/admin_config.py
AdminRegistry¶
fastapi_admin_kit.AdminRegistry
¶
Singleton registry for admin models.
Uses dependency injection for ModelInspector and ModelValidator, making the registry testable and separable from inspection/validation concerns.
Source code in fastapi_admin_kit/registry/core.py
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 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 | |
inspector
property
writable
¶
Get the model inspector.
validator
property
writable
¶
Get the model validator.
__init__()
¶
Initialize the registry with default inspector and validator.
Source code in fastapi_admin_kit/registry/core.py
register(model, admin_class=None)
¶
Register a model with the admin.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model
|
type
|
A SQLAlchemy declarative model class. |
required |
admin_class
|
type[ModelAdmin] | None
|
Optional ModelAdmin subclass for the model. |
None
|
Returns:
| Type | Description |
|---|---|
RegisteredModel
|
The registered model configuration. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If the model is not a valid SQLAlchemy model. |
Source code in fastapi_admin_kit/registry/core.py
get(table_name)
¶
Get a registered model by table name.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
table_name
|
str
|
The table name to look up. |
required |
Returns:
| Type | Description |
|---|---|
RegisteredModel | None
|
The registered model, or None if not found. |
Source code in fastapi_admin_kit/registry/core.py
all()
¶
Get all registered models.
Returns:
| Type | Description |
|---|---|
list[RegisteredModel]
|
A list of all registered models. |
auto_discover()
¶
Scan all subclasses of DeclarativeBase and register unregistered ones.
Also discovers SQLModel subclasses if SQLModel is installed.
Returns:
| Type | Description |
|---|---|
list[RegisteredModel]
|
A list of newly registered models. |
Source code in fastapi_admin_kit/registry/core.py
RegisteredModel¶
fastapi_admin_kit.RegisteredModel
dataclass
¶
Central dataclass holding a registered model and its admin config.
Source code in fastapi_admin_kit/registry/core.py
ModelAdmin¶
fastapi_admin_kit.ModelAdmin
¶
Base class for model admin configuration.
Subclass this to customise how a model is displayed, filtered, and edited. All fields are optional — unset fields fall back to auto-detected values.
Source code in fastapi_admin_kit/modeladmin.py
16 17 18 19 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 59 60 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 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 | |
__str__(obj)
¶
How to display an object in dropdowns/links.
get_queryset(session, request=None)
¶
Override to filter records globally (e.g. soft-delete filter).
get_object(session, id)
¶
prepare_create_data(data, request=None)
¶
Strip extra fields and return only model-column data for INSERT.
Source code in fastapi_admin_kit/modeladmin.py
prepare_update_data(data, request=None)
¶
Strip extra fields and return only model-column data for UPDATE.
Source code in fastapi_admin_kit/modeladmin.py
on_create(obj, request=None)
¶
after_create(obj, request=None)
¶
on_update(obj, data, request=None)
¶
after_update(obj, request=None)
¶
on_delete(obj, request=None)
¶
after_delete(obj, request=None)
¶
validate_create(data, request=None)
¶
Validate and/or transform form data before create.
Return the (possibly modified) data dict. Raise ValueError
with a user-facing message to abort the operation.
Source code in fastapi_admin_kit/modeladmin.py
validate_update(obj, data, request=None)
¶
Validate and/or transform form data before update.
Return the (possibly modified) data dict. Raise ValueError
with a user-facing message to abort the operation.
Source code in fastapi_admin_kit/modeladmin.py
process_form_data(data, request=None)
¶
Process form data before save. Override for custom processing.
Called after form parsing and validation. Use this to transform form data, extract special fields, or prepare data for saving.
Source code in fastapi_admin_kit/modeladmin.py
save_model(obj, data, request=None, is_create=False)
¶
Custom save logic. Override for full control over save flow.
When overridden, this method is called instead of the default save logic. The object is already added to the session but not committed yet. Call session.commit() yourself if needed.
Source code in fastapi_admin_kit/modeladmin.py
get_form_context(context, obj=None, request=None)
¶
Customize form template context. Return modified context.
Called when building the form context for create/edit views. Override to add custom template variables.
Source code in fastapi_admin_kit/modeladmin.py
get_readonly_fields(obj=None, request=None)
¶
Return list of readonly field names. Override for dynamic readonly.
Called during form field generation. Fields returned here are in addition to the static readonly_fields list.
Source code in fastapi_admin_kit/modeladmin.py
get_hidden_fields(obj=None, request=None)
¶
Return list of hidden field names. Override for dynamic hidden.
Called during form field generation. Hidden fields are excluded from the form entirely.
Source code in fastapi_admin_kit/modeladmin.py
get_form_fields(obj=None, request=None, columns=None, relationships=None)
¶
Return ordered list of FieldMeta objects for the create/edit form.
Source code in fastapi_admin_kit/modeladmin.py
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 | |
get_actions_for_location(location)
¶
Get resolved Action instances for a given location (list/row/detail/submit_line).
Source code in fastapi_admin_kit/modeladmin.py
get_inline_edit_fields(obj=None, request=None, columns=None, relationships=None)
¶
Return FieldMeta list for the inline edit form.
Source code in fastapi_admin_kit/modeladmin.py
DatabaseConfig¶
fastapi_admin_kit.config.DatabaseConfig
¶
Database connection configuration.
Two usage modes (url takes precedence):
-
Full URL — pass
url="sqlite+aiosqlite:///./db.sqlite3". The URL is automatically inspected and its driver is upgraded to an async driver if necessary (e.g.sqlite:///…→sqlite+aiosqlite:///…). -
Structured fields — set
db_type,host,port,database,username,passwordindividually.
Always creates a SQLAlchemy async engine via :meth:create_engine.
Source code in fastapi_admin_kit/config/database.py
build_url()
¶
Build or normalise the async connection URL from this config.
Source code in fastapi_admin_kit/config/database.py
create_engine()
¶
Create a SQLAlchemy async engine from this config.
Source code in fastapi_admin_kit/config/database.py
DatabaseType¶
fastapi_admin_kit.config.DatabaseType
¶
Configuration Options¶
ThemeConfig¶
fastapi_admin_kit.config.ThemeConfig
¶
Complete theme configuration — maps to CSS custom properties.
When preset is set, its defaults are used. Any explicit attribute override takes precedence over the preset defaults.
Source code in fastapi_admin_kit/config/theme.py
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 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 | |
to_css_variables()
¶
Generate CSS :root{} block from config.
Source code in fastapi_admin_kit/config/theme.py
to_context()
¶
Return dict suitable for template context.
Source code in fastapi_admin_kit/config/theme.py
BehaviorConfig¶
fastapi_admin_kit.config.BehaviorConfig
¶
Behavior configuration.
Source code in fastapi_admin_kit/config/behavior.py
AuthConfig¶
fastapi_admin_kit.config.AuthConfig
¶
Authentication configuration.
Source code in fastapi_admin_kit/config/auth.py
get_hasher()
¶
Return the configured password hasher, or default BcryptHasher.
Source code in fastapi_admin_kit/config/auth.py
validate_auth_model()
¶
Validate that auth_model satisfies AdminUserProtocol.
Source code in fastapi_admin_kit/config/auth.py
AuditConfig¶
fastapi_admin_kit.config.AuditConfig
¶
Audit configuration.
Source code in fastapi_admin_kit/config/audit.py
UIConfig¶
fastapi_admin_kit.config.UIConfig
¶
UI configuration — wraps ThemeConfig + component-level options.
Source code in fastapi_admin_kit/config/ui.py
11 12 13 14 15 16 17 18 19 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 59 60 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 | |
apply_to_template_context()
¶
Apply UI configuration to template context.
Source code in fastapi_admin_kit/config/ui.py
StorageConfig¶
fastapi_admin_kit.config.StorageConfig
¶
Storage configuration.
Source code in fastapi_admin_kit/config/storage.py
validate_storage_config()
¶
Validate storage configuration.
NavConfig¶
fastapi_admin_kit.config.NavConfig
¶
Navigation configuration.
Source code in fastapi_admin_kit/config/nav.py
validate_nav_config()
¶
Actions¶
Action¶
fastapi_admin_kit.actions.base.Action
¶
Bases: ABC
Abstract base class for admin actions.
Supports list-level, row-level, detail-level, and submit-line actions with Unfold-style icon, variant, and permission configuration.
Source code in fastapi_admin_kit/actions/base.py
ModelAction¶
fastapi_admin_kit.actions.base.ModelAction
¶
Bases: Action
Action that operates on a single model instance (row/detail actions).
Source code in fastapi_admin_kit/actions/base.py
execute_single(obj, request)
async
¶
Run the action on a single object.
Override this instead of execute for single-object actions.
Pagination¶
BasePagination¶
fastapi_admin_kit.pagination.base.BasePagination
¶
Bases: ABC
Abstract base for all pagination strategies.
Source code in fastapi_admin_kit/pagination/base.py
paginate(stmt, session, per_page, page=1, after=None, before=None, pk_col=None, model=None)
abstractmethod
async
¶
Execute paginated query and return results.
Source code in fastapi_admin_kit/pagination/base.py
PaginationResult¶
fastapi_admin_kit.pagination.base.PaginationResult
dataclass
¶
Unified result from any pagination strategy.
Source code in fastapi_admin_kit/pagination/base.py
OffsetPagination¶
fastapi_admin_kit.pagination.offset.OffsetPagination
¶
Bases: BasePagination
Traditional page-number pagination using OFFSET/LIMIT.
Source code in fastapi_admin_kit/pagination/offset.py
CursorPagination¶
fastapi_admin_kit.pagination.cursor.CursorPagination
¶
Bases: BasePagination
Keyset pagination using opaque base64-encoded cursors.
Uses a configurable column (default: primary key) for cursor values. Supports forward (after) and backward (before) navigation.
Source code in fastapi_admin_kit/pagination/cursor.py
DynamicPagination¶
fastapi_admin_kit.pagination.dynamic.DynamicPagination
¶
Bases: BasePagination
Automatically switches between offset and cursor pagination.
Uses offset for small datasets (fast page jumping), cursor for large datasets (consistent performance at any depth).
Source code in fastapi_admin_kit/pagination/dynamic.py
Permissions¶
PermissionChecker¶
fastapi_admin_kit.auth.permissions.PermissionChecker
¶
Per-request permission checker.
Instantiated once per request via Depends(get_permission_checker).
Caches permission results in-memory for the lifetime of the request.
Merges permissions from: 1. All assigned roles (M2M via admin_user_roles) 2. Direct per-user overrides (UserPermission)
Role permissions are OR'd together, then direct overrides are OR'd on top.
Source code in fastapi_admin_kit/auth/permissions.py
16 17 18 19 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 59 60 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 200 201 202 203 204 205 206 | |
has_permission(table_name, action)
async
¶
Return True if the current user may perform action on table_name.
Actions: "view" | "create" | "edit" | "delete"
Superusers always return True. Results are cached per-request.
Source code in fastapi_admin_kit/auth/permissions.py
get_allowed_fields(table_name, mode)
async
¶
Return the set of field names the user may access, or None.
mode: "view" | "edit"
Semantics:
- None → no field-level restrictions exist → all fields allowed.
- Empty set() → restriction rows exist but none grant access → no fields.
- Non-empty set() → only those field names are permitted.
Source code in fastapi_admin_kit/auth/permissions.py
permission_set(table_name)
¶
Return a :class:PermissionSet for convenient template / UI use.
Note: This is a sync convenience wrapper. For async contexts, use the individual async methods directly.
Source code in fastapi_admin_kit/auth/permissions.py
load_permissions(table_name)
async
¶
Async method to load and cache all permissions for a table.
Call this before using permission_set() to ensure the cache is populated.
Source code in fastapi_admin_kit/auth/permissions.py
Views¶
ListView¶
fastapi_admin_kit.views.class_views.ListView
¶
Bases: BaseView
Orchestrates list view: query -> render HTML or API.
Source code in fastapi_admin_kit/views/class_views.py
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 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 | |
get_context(request, q, page, checker)
async
¶
Build template context — override to add custom context.
Source code in fastapi_admin_kit/views/class_views.py
CreateView¶
fastapi_admin_kit.views.class_views.CreateView
¶
Bases: BaseView
Orchestrates create: parse -> validate -> save -> respond.
Source code in fastapi_admin_kit/views/class_views.py
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 | |
EditView¶
fastapi_admin_kit.views.class_views.EditView
¶
Bases: BaseView
Orchestrates edit: fetch -> parse -> validate -> update -> respond.
Source code in fastapi_admin_kit/views/class_views.py
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 533 534 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 619 620 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 663 664 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 | |
DeleteView¶
fastapi_admin_kit.views.class_views.DeleteView
¶
Bases: BaseView
Orchestrates delete: fetch -> delete -> respond.
Source code in fastapi_admin_kit/views/class_views.py
BulkView¶
fastapi_admin_kit.views.class_views.BulkView
¶
Bases: BaseView
Orchestrates bulk actions on multiple objects.
Source code in fastapi_admin_kit/views/class_views.py
794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 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 845 846 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 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 | |
Schema Generation¶
fastapi_admin_kit.api.schema_generator
¶
Dynamic Pydantic schema generation from SQLAlchemy models.
build_create_schema(registered)
¶
Build a Pydantic model for create requests.
Excludes PK, readonly fields, and server-default-only fields.
Source code in fastapi_admin_kit/api/schema_generator.py
build_update_schema(registered)
¶
Build a Pydantic model for update requests.
All fields optional. Excludes PK and readonly fields.
Source code in fastapi_admin_kit/api/schema_generator.py
build_response_schema(registered)
¶
Build a Pydantic model for response output.
Source code in fastapi_admin_kit/api/schema_generator.py
build_list_response_schema(registered)
¶
Build a paginated list response schema wrapping the response schema.
Source code in fastapi_admin_kit/api/schema_generator.py
get_or_build_schemas(registered)
¶
Get or generate and cache schemas for a registered model.