#18202: Display content type in admin

Work Item: 18202

--HG--
branch : 1.x
This commit is contained in:
Sebastien Ros
2011-12-01 15:40:07 -08:00
parent 4e77c09e37
commit dde7e21a69
2 changed files with 5 additions and 1 deletions

View File

@@ -7,7 +7,7 @@
<div class="summary" itemscope="itemscope" itemid="@contentItem.Id" itemtype="http://orchardproject.net/data/ContentItem">
<div class="properties">
<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) {
<div class="header">@Display(Model.Header)</div>
}

View File

@@ -941,6 +941,10 @@ table.items td .add
.contentItems .properties {
float:left;
}
.contentItems .properties .contentType {
display: inline;
color: #333;
}
.contentItems h3 {
padding-top:0;
}