I really did not find a solution that worked through SO.
... and I suspect that I should really do this in the model ...
but is it possible to have C # code blocks where you can add adhoc code, for example:
@int daysLeft = CurrentTenant.TrialExpiryDate.Subtract(DateTimeOffset.Now).Days @if (daysLeft <= 0) { { <text> Trial period completed </text> } else { <text> You have @daysLeft days left of you trial </text> }
source share