@model PowderCoating.Web.ViewModels.PowderCatalog.PowderCatalogFormViewModel @{ var enableAiLookup = ViewData["EnableAiLookup"] as bool? == true; } @if (enableAiLookup) {
AI Lookup
Search the web for missing specs, cure data, and SDS/TDS links. Existing values are left alone unless the field is blank.
}
@if (Model.Id > 0) {
Created
@Model.CreatedAt.ToString("MMM d, yyyy h:mm tt") UTC
Updated
@(Model.UpdatedAt?.ToString("MMM d, yyyy h:mm tt") ?? "Never")@(Model.UpdatedAt.HasValue ? " UTC" : string.Empty)
Last Synced
@(Model.LastSyncedAt?.ToString("MMM d, yyyy h:mm tt") ?? "Never")@(Model.LastSyncedAt.HasValue ? " UTC" : string.Empty)
}