Package Validations

-

Get pending validations.

+
+ Get pending validations + | + @ViewHelpers.PostLink( + this, + formId: "revalidate-pending-packages", + linkText: "Revalidate pending packages", + actionName: "RevalidatePending", + controllerName: "Validation", + role: string.Empty, + area: "Admin", + classes: "form-inline-empty", + formValues: new Dictionary + { + { "validatingType", ValidatingType.Package.ToString() }, + }) + | + @ViewHelpers.PostLink( + this, + formId: "revalidate-pending-symbol-packages", + linkText: "Revalidate pending symbol packages", + actionName: "RevalidatePending", + controllerName: "Validation", + role: string.Empty, + area: "Admin", + classes: "form-inline-empty", + formValues: new Dictionary + { + { "validatingType", ValidatingType.SymbolPackage.ToString() }, + }) +

@@ -78,7 +108,7 @@ { @ViewHelpers.PostLink( this, - formId: "revalidate-package-form", + formId: "revalidate-package-form-" + package.PackageKey, linkText: "Revalidate package", actionName: "Revalidate", controllerName: "Packages", @@ -87,6 +117,7 @@ { { "id", package.Id }, { "version", package.NormalizedVersion }, + { "returnUrl", Url.Current() }, })
} @@ -94,7 +125,7 @@ { @ViewHelpers.PostLink( this, - formId: "revalidate-symbols-form", + formId: "revalidate-symbols-form-" + package.PackageKey, linkText: "Revalidate symbols", actionName: "RevalidateSymbols", controllerName: "Packages", @@ -103,6 +134,7 @@ { { "id", package.Id }, { "version", package.NormalizedVersion }, + { "returnUrl", Url.Current() }, })
} @@ -193,8 +225,21 @@ } - + } } -