Pagination styling

This commit is contained in:
2017-01-04 10:10:43 -05:00
parent 9e710effc1
commit d14e40a36b
18 changed files with 2230 additions and 8 deletions
+6 -2
View File
@@ -36,14 +36,18 @@ namespace LeafWeb.WebCms.Models
[Required]
public DateTime Added { get; set; }
[Display(Name = "Error Message")]
public string OutputErrorMessage { get; set; }
[Display(Name = "Warning Message")]
public string OutputWarningMessage { get; set; }
[UIHint("Status")]
public string CurrentStatus { get; set; }
[UIHint("LeafInputStatusViewModels")]
public List<LeafInputStatusViewModel> StatusHistory { get; set; }
public string OutputErrorMessage { get; set; }
static LeafInputDetails()
{
Mapper.CreateMap<LeafInputFile, string>().ConvertUsing(file => file?.Contents.GetString());