@using Disco.Web.Areas.Config.Models.DocumentTemplate; @model ExportModel @{ Authorization.Require(Claims.Config.DocumentTemplate.Export); ViewBag.Title = Html.ToBreadcrumb("Configuration", MVC.Config.Config.Index(), "Document Templates", MVC.Config.DocumentTemplate.Index(null), "Export"); }
| Documents: |
|
|||
|---|---|---|---|---|
| @Html.LabelFor(m => m.Options.LatestOnly) |
@Html.CheckBoxFor(m => m.Options.LatestOnly)
Uncheck to include all document instances. |
|||
| @Html.LabelFor(m => m.Options.Format) | @Html.DropDownListFor(m => m.Options.Format, Enum.GetNames(typeof(Disco.Models.Exporting.ExportFormat)).Select(v => new SelectListItem() { Value = v, Text = v })) |