I'm trying to render a table using a Marionette CompositeView/ItemView and am running into issues with the jade template. The table "shell" is rendered correctly for the composite view but the template for the item view only renders the first table cell in the tbody section. Here is what I have.
CompositView Template
div.span5
table.table.table-striped.table-condensed
thead
tr
th.span2
th.span4
tbody
ItemView Template
td Some Title
td A Description
If I add the tr tag to the ItemView template, then both columns are rendered. But I don't want that because the tr tag is already added by the ItemView. Any ideas why the second column doesn't get rendered?
Thanks!