723eeec91e
Initially to make 'long running job threshold' configurable. Updates to ManagedJobList and fix for missing GetClaimKeys method (#24).
32 lines
1006 B
C#
32 lines
1006 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 bool IsLongRunning { 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;
|
|
}
|
|
}
|
|
}
|
|
} |