seq:
  - ["+", [1, 2]]
  - ["-", [3, 4]]
---
<ul>
{% for op, (a, b) in seq %}
  <li>{{ a }} {{ op }} {{ b }} = ?
{% endfor %}
</ul>
