mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00

Adding a BindingSource description text Adding a devtools/inventory/shapetable action to list shapes in the system and where their display is implemented --HG-- branch : dev
13 lines
232 B
Plaintext
13 lines
232 B
Plaintext
|
|
<div>
|
|
@model Orchard.DisplayManagement.Descriptors.ShapeTable;
|
|
<ul>
|
|
@foreach(var descriptor in Model.Descriptors) {
|
|
<li>
|
|
@descriptor.Key
|
|
<p>@descriptor.Value.BindingSource</p>
|
|
</li>
|
|
}
|
|
</ul>
|
|
</div>
|