Core Components
How Admin and SiteRegistry relate
Admin creates no registry of its own — it reads from the module-level site singleton in hyperadmin.core.registry. When you call site.register(MyModel) anywhere in your codebase, that model is automatically available when admin.mount() is called later.
# In myapp/admin.py
from hyperadmin.core.registry import site
site.register(Product)
# In main.py
from hyperadmin import Admin
admin = Admin(app, engine=engine, discover_apps=["myapp"])
admin.mount("/admin") # picks up Product automatically
Alternatively, use ModelView subclassing — it calls site.register() for you via __init_subclass__:
from hyperadmin.views.dynamic import ModelView
class ProductAdmin(ModelView, model=Product):
pass # registered automatically at import time
Admin
hyperadmin.core.app.Admin
The main entry point for HyperAdmin.
Mounts static files, wires the database engine, optionally discovers admin modules, and registers all model routes on the FastAPI application.
All scalar configuration lives in HyperAdminSettings — pass a settings
object or let HyperAdmin auto-instantiate one (which reads from environment
variables and a .env file).
Example::
from fastapi import FastAPI
from hyperadmin import Admin, HyperAdminSettings
app = FastAPI()
settings = HyperAdminSettings(secret_key="my-secret", theme="dark")
admin = Admin(app, engine=engine, settings=settings)
admin.mount("/admin")
Source code in src/hyperadmin/core/app.py
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 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 | |
theme
property
Active theme from settings.
__init__(app, engine=None, settings=None, auth_backend=None, permission_checker=None, permission_registry=None, storage=None, otp_service=None, realtime=None)
Initialise HyperAdmin and attach it to a FastAPI application.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
app
|
FastAPI
|
The FastAPI application instance to attach the admin to. |
required |
engine
|
Any
|
An async SQLAlchemy engine. Defaults to the built-in
|
None
|
settings
|
HyperAdminSettings | None
|
A |
None
|
auth_backend
|
Any
|
An optional authentication backend implementing the
|
None
|
permission_checker
|
Any
|
An optional |
None
|
permission_registry
|
Any
|
An optional |
None
|
storage
|
Any
|
An optional |
None
|
otp_service
|
Any
|
An optional MFA OTP service (e.g. |
None
|
realtime
|
RealtimeSettings | None
|
Opt-in |
None
|
Source code in src/hyperadmin/core/app.py
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 | |
mount(path)
Mounts the admin interface on the FastAPI application.
Source code in src/hyperadmin/core/app.py
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 | |
SiteRegistry
hyperadmin.core.registry.SiteRegistry
A central, thread-safe registry for managing administrative models.
This registry acts as a single source of truth for all models that HyperAdmin
manages. It uses a threading.Lock to ensure that registrations and other
operations are atomic, making it safe for use in multi-threaded web applications.
Source code in src/hyperadmin/core/registry.py
8 9 10 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 | |
get_registered_models()
Returns a list of all registered models.
Returns:
| Type | Description |
|---|---|
list[Any]
|
A list of registered models. |
Source code in src/hyperadmin/core/registry.py
86 87 88 89 90 91 92 93 94 | |
register(model, admin_class=None, options=None, app_label=None)
Registers a model with an optional admin class and admin options.
This method also discovers the appropriate adapter for the model and attaches it to the admin instance.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model
|
Any
|
The model class or instance to register. |
required |
admin_class
|
Any
|
The admin class to associate with the model. If None, ModelAdmin will be used. |
None
|
options
|
AdminOptions | None
|
The admin options to associate with the model. If None, default options will be used. |
None
|
app_label
|
str | None
|
The label of the application that the model belongs to. |
None
|
Raises:
| Type | Description |
|---|---|
ValueError
|
If the model is already registered. |
AdapterNotFoundError
|
If no suitable adapter can be found for the model. |
Source code in src/hyperadmin/core/registry.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 59 60 61 62 63 64 65 66 67 68 69 | |
unregister(model)
Unregisters a model.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model
|
Any
|
The model class or instance to unregister. |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
If the model is not registered. |
Source code in src/hyperadmin/core/registry.py
71 72 73 74 75 76 77 78 79 80 81 82 83 84 | |
AdminOptions
hyperadmin.core.options.AdminOptions
Bases: BaseModel
Per-model configuration for the HyperAdmin interface.
Pass an instance to site.register() or set it as a class attribute on
a ModelView subclass to control which views are generated.
Example
from hyperadmin.core.options import AdminOptions
from hyperadmin.core.registry import site
site.register(Product, options=AdminOptions(can_delete=False))
Source code in src/hyperadmin/core/options.py
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 | |
can_create = True
class-attribute
instance-attribute
Whether the Create form and POST endpoint are generated.
can_delete = True
class-attribute
instance-attribute
Whether the Delete action and DELETE endpoint are generated.
can_detail = True
class-attribute
instance-attribute
Whether the Detail view and GET (single item) endpoint are generated.
can_edit = True
class-attribute
instance-attribute
Whether the Edit form and PUT endpoint are generated.
can_list = True
class-attribute
instance-attribute
Whether the List view and GET (collection) endpoint are generated.
dependent_fields = {}
class-attribute
instance-attribute
Cascading select configuration: maps child field name → parent field name.
Example: {"city": "country_id"} makes the city select reload when country_id changes.
fieldsets = []
class-attribute
instance-attribute
Groups of fields rendered together under collapsible headings in create/update forms.
When non-empty, the form renders fields in the order defined by the fieldsets. Fields not included in any fieldset are rendered in a default ungrouped section.
Example
AdminOptions(fieldsets=[
FieldsetSpec(name="Basic Info", fields=["name", "email"]),
FieldsetSpec(name="Advanced", fields=["is_active", "rating"], collapsed=True),
])
form_fields = []
class-attribute
instance-attribute
Explicit ordering of fields in create/update forms.
When non-empty, only these fields are shown, in the specified order. When empty, all editable fields are shown in model-definition order.
Example
AdminOptions(form_fields=["name", "email", "is_active"])
form_layout = FormLayout.SINGLE
class-attribute
instance-attribute
Controls the column layout of form fields.
FormLayout.SINGLE: One field per row (default).FormLayout.TWO_COLUMN: Fields arranged in a two-column grid.
Example
AdminOptions(form_layout=FormLayout.TWO_COLUMN)
inlines = []
class-attribute
instance-attribute
Inline related models rendered as sub-forms within create/update views.
Each InlineModelSpec defines a related model whose rows can be added,
edited, and removed directly in the parent form.
Example
AdminOptions(inlines=[
InlineModelSpec(model=OrderItem, fk_field="order_id", extra=3),
])
list_display = None
class-attribute
instance-attribute
Field names to show in the list view table.
None(default): smart defaults viainfer_list_display().[]: empty — no columns shown (disables feature).["id", "name"]: explicit list used as-is.
list_editable = Field(default_factory=list)
class-attribute
instance-attribute
Allow-list of field names that can be inline-edited in the list view.
Empty by default — feature is opt-in. Fields named here MUST exist on the
model schema. The primary key (id) is never inline-editable, even if
listed here, and is filtered out at the view layer.
list_filter = None
class-attribute
instance-attribute
List of field names to show in the filter bar.
None(default): smart defaults viainfer_list_filter().[]: filtering disabled.["is_active", "status"]: explicit list used as-is.
object_permission_checker = None
class-attribute
instance-attribute
Per-object permission checker used by the view layer for fine-grained authz.
When None (default), no object-level checks are performed and behavior
matches model-level :class:PermissionChecker enforcement only. Provide a
custom :class:ObjectPermissionChecker (or
:class:DefaultObjectPermissionChecker as a permissive baseline) to opt
into per-object authorization.
The view layer that consumes this field is wired in a later slot (C2-C); declaring it here lets model registrations adopt object-level checks ahead of the wiring.
relation_display = None
class-attribute
instance-attribute
Per-relation option-label rendering.
Maps a FK/M2M field name to either a Python format string or a callable
that receives the related instance and returns its display label. Format
strings are the recommended path; callables are an escape hatch for
computed properties unreachable via getattr.
Example
AdminOptions(relation_display={"supplier_id": "{name} — {city}"})
relation_filters = None
class-attribute
instance-attribute
Declarative dependent-filtering for FK/M2M autocomplete widgets.
Keys are child field names; values describe which parent field on the
same form the child depends on. The widget for each keyed child
forwards the parent's value via hx-include so the dropdown narrows
automatically. See docs/specs/htmx-autocomplete.md.
Example
AdminOptions(
relation_filters={
"variant_id": RelationDependency(depends_on="supplier_id"),
}
)
search_fields = None
class-attribute
instance-attribute
Field names to include in full-text search.
None(default): smart defaults viainfer_search_fields().[]: search disabled.["name", "email"]: explicit list used as-is.
use_autocomplete_widget = True
class-attribute
instance-attribute
Whether FK/M2M fields render via :class:AutocompleteWidget.
Defaults to True: the new widget is a strict superset of the legacy
<select> rendering. Set to False to opt back into the legacy
widget on a per-model basis.
validate_against_model(model)
Validate options that reference field names against a concrete model.
Called by the registry when the options are bound to model. Raises
:class:ValueError if any relation_filters[child].depends_on
references a field that does not exist on the model.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model
|
type
|
The SQLModel / Pydantic class these options are bound to. |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
If a referenced field name does not exist on the model. |
Source code in src/hyperadmin/core/options.py
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 | |