def get_option_list(self):
return [(
(self.product_os, self.product_os_description),
(self.product_CPU, self.product_CPU_description)
)]
{% for item in product.get_option_list %}
{% for x, y in item %}
<tr>
<td>{{ x }}
<td>{{ y }}
</tr>
{% endfor %}
{% endfor %}