@inherits MSGComponentBase @T("Version"): @this.Info.VersionText @if (this.ShowAcceptanceMetadata) { @if (this.AcceptanceStatus is MandatoryInfoAcceptanceStatus.MISSING) { @T("This mandatory info has not been accepted yet.") } else if (this.AcceptanceStatus is MandatoryInfoAcceptanceStatus.VERSION_CHANGED) { @T("A new version of the terms is available. Please review it again.")
@T("Last accepted version"): @this.Acceptance!.AcceptedVersion
@T("Accepted at (UTC)"): @this.Acceptance.AcceptedAtUtc.UtcDateTime.ToString("u")
} else if (this.AcceptanceStatus is MandatoryInfoAcceptanceStatus.CONTENT_CHANGED) { @T("Please review this text again. The content was changed.")
@T("Last accepted version"): @this.Acceptance!.AcceptedVersion
@T("Accepted at (UTC)"): @this.Acceptance.AcceptedAtUtc.UtcDateTime.ToString("u")
} else { @T("Accepted version"): @this.Acceptance!.AcceptedVersion
@T("Accepted at (UTC)"): @this.Acceptance.AcceptedAtUtc.UtcDateTime.ToString("u")
} }