- @if (_diffLoading)
- {
-
- }
- else if (_diffError != null)
- {
-
@_diffError
- }
- else if (_diffResult != null)
- {
-
-
- @(_diffResult.IsStale ? "Stale — changes pending" : "Current")
-
-
- Deployed: @_diffResult.DeployedRevisionHash[..8]
- | Current: @_diffResult.CurrentRevisionHash[..8]
- | Deployed at: @_diffResult.DeployedAt.LocalDateTime.ToString("yyyy-MM-dd HH:mm")
-
-
- @if (!_diffResult.IsStale)
- {
-
No differences between deployed and current configuration.
- }
- else
- {
-
The deployed revision hash differs from the current template-derived hash. Redeploy to apply changes.
- }
- }
-