f1ee2937cd
New icon, theme, and fuzzy time. Add moment.js
32 lines
1009 B
C#
32 lines
1009 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
using Disco.BI.Extensions;
|
|
using Disco.Models.UI.Job;
|
|
using Disco.Web.Extensions;
|
|
|
|
namespace Disco.Web.Models.Job
|
|
{
|
|
public class ShowModel : JobShowModel
|
|
{
|
|
public Disco.Models.Repository.Job Job { get; set; }
|
|
|
|
public TimeSpan? LongRunning { get; set; }
|
|
|
|
public List<Disco.Models.Repository.DocumentTemplate> AvailableDocumentTemplates { get; set; }
|
|
public List<Disco.Models.Repository.JobSubType> UpdatableJobSubTypes { get; set; }
|
|
|
|
public List<SelectListItem> DocumentTemplatesSelectListItems
|
|
{
|
|
get
|
|
{
|
|
var list = new List<SelectListItem>();
|
|
list.Add(new SelectListItem() { Selected = true, Value = string.Empty, Text = "Generate Document" });
|
|
list.AddRange(this.AvailableDocumentTemplates.ToSelectListItems());
|
|
return list;
|
|
}
|
|
}
|
|
}
|
|
} |