Image entry
Introduction
Section titled “Introduction”ImageEntry displays one URL or a stack of images from list state — avatars, covers, and team stacks on a record view. Empty state uses .placeholder(...) or .default_image_url(...); placeholders never become <img> tags.
Like other entries, the label stacks above the image by default so covers and avatars read as labeled fields on the detail sheet. Reach for .circular() / .stacked() when the layout should match social-style avatars rather than a rectangular cover.
Basic image
Section titled “Basic image”from almasix.orbit.infolists import ImageEntry
ImageEntry.make("photo").label("Cover").width(96).height(96).alt("Cover")

Circular and square
Section titled “Circular and square”.circular() rounds the image; .square() forces a square crop (clears circular).
ImageEntry.make("photo").label("Avatar").circular().size(56).alt("Avatar")

Size helpers
Section titled “Size helpers”| Method | Notes |
|---|---|
.size(56) / .image_size(56) |
Pixel square, or named size class |
.width / .height |
Independent dimensions |
.ring(2) |
Avatar ring width |
.overlap(10) |
Stack overlap (stacked mode) |
Stacked images
Section titled “Stacked images”When state is a list of URLs, .stacked() overlaps them. .limit(n) caps how many are shown and renders +N for the overflow.
ImageEntry.make("photos") .label("Team") .stacked() .circular() .limit(2) .overlap(10) .ring(2) .size(40)

Defaults, alt, and extra attributes
Section titled “Defaults, alt, and extra attributes”ImageEntry.make("photo") .default_image_url("/images/fallback.png") .alt(lambda record, **_: record.get("title", "Image")) .extra_img_attributes({"loading": "lazy"})API cheat sheet
Section titled “API cheat sheet”| Method | Notes |
|---|---|
.circular / .square |
Shape |
.size / .image_size / .width / .height |
Dimensions |
.stacked / .limit / .overlap / .ring |
Stack layout |
.default_image_url |
Fallback URL when empty |
.alt / .extra_img_attributes |
Accessibility + img attrs |
.placeholder |
Text when empty (no default image) |