@{
var index = 0;
foreach (var document in Model.DocumentTemplates)
{
@document.Scope
index++;
}
}
@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 }))