Adding content type filter hint.

This commit is contained in:
Sipke Schoorstra
2014-07-29 17:36:53 -07:00
parent dff819ae04
commit b20aa9c52f

View File

@@ -4,5 +4,8 @@
var currentContentType = (string)Model.ContentType;
var listItems = contentTypes.Select(x => new SelectListItem {Text = x.DisplayName, Value = x.Name, Selected = x.Name == currentContentType});
}
@Html.Label("contenttype", T("Content type:").Text)
@Html.DropDownList("contenttype", listItems, "")
<label for="contenttype">
@T("Content type:")
<a href="#" title="@T("Applies to content type events only, not to content item events.")">@T("?")</a>
</label>
@Html.DropDownList("contenttype", listItems, "")