public HtmlTag FilterForm(HtmlHelper<AdminFilters> html, UrlHelper urlHelper)
 {
     var form = urlHelper.Form<AdminController>
         (c => c.IndexData(null))
         .Id("FilterForm")
         .Nest(
             Tags.Table.AddHeaderRow(r =>
                                         {
                                             r.Cell("Type");
                                             r.Cell("Search");
                                         })
                 .AddBodyRow(r =>
                                 {
                                     r.Cell().Child(html.FilterFor(x => x.Type));
                                     r.Cell().Child(html.FilterFor(x => x.Search));
                                     r.Cell().Child(ViewConventionExtensions.ResetButton());
                                 }),
             Tags.Br,
             Tags.SubmitButton.Value("Search"))
         .Nest(ViewConventionExtensions.ExportButtons());
     return form;
 }