Add seven illustrative screenshots to docs/en/low-code/images (actions-menu.png, create-modal.png, data-grid.png, foreign-access-modal.png, interceptor-error.png, menu-items.png, quick-look.png) and update docs/en/low-code/index.md to include references to the menu, data grid, and create/edit modal images to better demonstrate the Low-Code UI features.
@ -108,6 +108,8 @@ Set the `access` field on a foreign key property:
When foreign access is configured between two **dynamic entities**:

### `ForeignAccess.View`
An **action menu item** appears on the target entity's data grid row (e.g., a "Visited Countries" item on the Country row). Clicking it opens a read-only modal showing related records.
@ -116,6 +118,8 @@ An **action menu item** appears on the target entity's data grid row (e.g., a "V
An **action menu item** appears on the target entity's data grid row (e.g., an "Orders" item on the Customer row). Clicking it opens a fully functional CRUD modal where users can create, edit, and delete related records.

### `ForeignAccess.None`
No action menu item is added. The foreign key exists only for data integrity and lookup display.
@ -17,6 +17,8 @@ The ABP Low-Code System allows you to define entities using C# attributes or Flu
No need to write DTOs, application services, repositories, or UI pages manually.

## Why Low-Code?
Traditionally, adding a new entity with full CRUD functionality to an ABP application requires:
@ -51,6 +53,10 @@ public class Product : DynamicEntityBase
Run `dotnet ef migrations add Added_Product` and start your application. You get a complete Product management page with search, filtering, sorting, pagination, create/edit forms, and foreign key dropdown — all auto-generated.

