mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-09-22 20:13:50 +08:00
#18202: Display content type in admin
Work Item: 18202 --HG-- branch : 1.x
This commit is contained in:
@@ -7,7 +7,7 @@
|
|||||||
<div class="summary" itemscope="itemscope" itemid="@contentItem.Id" itemtype="http://orchardproject.net/data/ContentItem">
|
<div class="summary" itemscope="itemscope" itemid="@contentItem.Id" itemtype="http://orchardproject.net/data/ContentItem">
|
||||||
<div class="properties">
|
<div class="properties">
|
||||||
<input type="checkbox" value="@contentItem.Id" name="itemIds"/>
|
<input type="checkbox" value="@contentItem.Id" name="itemIds"/>
|
||||||
<h3>@Html.ItemAdminLink(contentItem)</h3>
|
<h3>@Html.ItemAdminLink(contentItem)</h3> - <div class="contentType">@contentItem.ContentType</div>
|
||||||
@if (Model.Header != null) {
|
@if (Model.Header != null) {
|
||||||
<div class="header">@Display(Model.Header)</div>
|
<div class="header">@Display(Model.Header)</div>
|
||||||
}
|
}
|
||||||
|
@@ -941,6 +941,10 @@ table.items td .add
|
|||||||
.contentItems .properties {
|
.contentItems .properties {
|
||||||
float:left;
|
float:left;
|
||||||
}
|
}
|
||||||
|
.contentItems .properties .contentType {
|
||||||
|
display: inline;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
.contentItems h3 {
|
.contentItems h3 {
|
||||||
padding-top:0;
|
padding-top:0;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user