module uim.bootstrap.bs5.classes.tables.footer; import uim.bootstrap; class DBS5TableFooter : DBS5Obj { mixin(H5This!"Tfoot"); mixin(MyContent!("row", "BS5TableRow")); mixin(MyContent!("tr", "BS5TableRow")); unittest { assert(Assert(BS5Table.row, `<table class="table"><tr></tr></table>`)); } } mixin(H5Calls!"BS5TableFooter"); unittest { assert(Assert(BS5TableFooter, `<tfoot></tfoot>`)); }