presentation-logic

Is this code business logic or presentation logic?

This code exists in a View: if (Model.Group.IsPremium && null != Model.Group.ContactInfo) { Html.RenderPartial("ContactInfo", Model.Group.ContactInfo); } at first glance, it's presentation logic and so it's ok. But it's not sitting well with me. The thing is, it's a business requirement to display con...