I am banging my head against the wall trying to create a price list table for a item with 1 main option (size) and 2 secondary options. I do not need the add to cart option, it is just for a easy to use/print price list. Thoughts?
Basic Example
Size Color 1 Color 2
Small $1.00 $1.25
Medium $2.00 $2.25
Large $3.00 $3.25
Here is where I am currently at
<div class="product_prices_all page-width">
<table class="tablefloat priceTable">
<thead>
<tr class="floathead">
{%- for option in product.options_with_values -%}
{% if option.position == 1 %}
<th>{{ option.name }}</th>
{% endif %}
{% if option.position > 1 %}
{%- for option_value in option.values -%}
<th>{{ option_value }}</th>
{% endfor %}
{% endif %}
{% endfor %}
</tr>
</thead>
<tbody>
{% for option in product.options_with_values %}
{% for option_value in option.values %}
<tr>
<td>{{ option_value }}</td>
<td>{{ option_value.variant.price | money }}</td>
<td>{{ option_value.variant.price | money }}</td>
</tr>
{% endfor %}
{% endfor %}
</tbody>
</table>
</div>