Use the attribute [UIHint(“Tags”)] then create a display template called Tags.ascx in the DisplayTemplates folder.
class MyModel
{
[UIHint("Tags")]
IList<Tag> Tags { get; protected set; }
}
And in the file Tags.ascx
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<IEnumerable<Tag>>" %>
<!-- put your Model code here ->
Works for me