I created a table from a composite view, with a model item template:
<script id="vehicle-table-row" type="text/template">
<td><a href="/vehicles/<%- id %>"><%- id %></a></td>
<td><%- make %></td>
<td><%- model %></td>
<td></td>
</script>
I need to add a value of a field from a different model into the last cell in my row. I haven't found any docs that shows how to do this.
How can I "combine" two models into one template? Is it possible?