3f63281dc4
Also UI style, theme and element changes
20 lines
454 B
C#
20 lines
454 B
C#
using Disco.Models.Services.Jobs.JobLists;
|
|
using Disco.Models.UI.Job;
|
|
using System.Linq;
|
|
|
|
namespace Disco.Web.Models.Job
|
|
{
|
|
public class ListModel : JobListModel
|
|
{
|
|
public string Title { get; set; }
|
|
public JobTableModel JobTable { get; set; }
|
|
|
|
public string PageTitle
|
|
{
|
|
get
|
|
{
|
|
return string.Format("{0} ({1})", Title, JobTable.Items.Count());
|
|
}
|
|
}
|
|
}
|
|
} |