Files
Orchard/src/Orchard.Web/Modules/Orchard.DevTools/Views/Inventory/ShapeTable.cshtml
Louis DeJardin 59d1100f95 Small update to shape descriptor
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
2010-08-31 18:30:12 -07:00

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>