Consolidated opportunities
The consolidated opportunities object contains information about consolidated opportunities in a project.
Project
Consolidated opportunity items
{% for order in project.consolidated_opportunities %}
<h1>{{ order.starts_at | localedate }} - {{ order.ends_at | localedate }}</h1>
<table class="table table-condensed">
<thead>
<tr>
<th class="align-right" style="width: 75px;">Qty</th>
<th>Item</th>
</tr>
</thead>
<tbody>
{% for item in order.consolidated_items %}
<tr>
<td class="align-right">{{ item.quantity | number }}</td>
<td style="padding-left: 16px">{{ item.name }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endfor %}consolidated_items
Consolidated opportunity itemsconsolidated_items ends_at
ends_atInput
Output
starts_at
starts_atInput
Output
Last updated