Display improvements

This commit is contained in:
2017-02-06 14:01:56 -05:00
parent 7dcd9dec75
commit 223a1c996a
13 changed files with 82 additions and 17 deletions
+2
View File
@@ -42,9 +42,11 @@ namespace LeafWeb.WebCms.Models
public DateTime Added { get; set; }
[Display(Name = "Piscal Error")]
[UIHint("PreReadMore")]
public string OutputErrorMessage { get; set; }
[Display(Name = "Piscal Warning")]
[UIHint("PreReadMore")]
public string OutputWarningMessage { get; set; }
[Display(Name = "Time In Progress")]
+2 -1
View File
@@ -1,6 +1,7 @@
using System.Collections.Generic;
using System.Linq;
using LeafWeb.Core.Entities;
using LeafWeb.Core.Utility;
namespace LeafWeb.WebCms.Models
{
@@ -10,6 +11,6 @@ namespace LeafWeb.WebCms.Models
public string ServerStatus { get; set; }
public IEnumerable<LeafInput> Items { get; set; }
public string Query { get; set; }
public IQueryable<LeafInput> CompletedLeafInput { get; set; }
public TimeInProgressEstimater TimeInProgressEstimater { get; set; }
}
}