b52cbcb94a
Expressions can be triggered when jobs are created and closed
18 lines
799 B
Plaintext
18 lines
799 B
Plaintext
@model Disco.Web.Areas.Config.Models.JobPreferences.IndexModel
|
|
@{
|
|
Authorization.Require(Claims.Config.JobPreferences.Show);
|
|
|
|
var canConfig = Authorization.Has(Claims.Config.JobPreferences.Configure);
|
|
|
|
ViewBag.Title = Html.ToBreadcrumb("Configuration", MVC.Config.Config.Index(), "Job Preferences");
|
|
|
|
if (canConfig)
|
|
{
|
|
Html.BundleDeferred("~/ClientScripts/Modules/Disco-PropertyChangeHelpers");
|
|
Html.BundleDeferred("~/ClientScripts/Modules/Disco-AjaxHelperIcons");
|
|
}
|
|
Html.RenderPartial(MVC.Config.JobPreferences.Views.Parts.General);
|
|
Html.RenderPartial(MVC.Config.JobPreferences.Views.Parts.Reports);
|
|
Html.RenderPartial(MVC.Config.JobPreferences.Views.Parts.Locations);
|
|
Html.RenderPartial(MVC.Config.JobPreferences.Views.Parts.Expressions);
|
|
} |