wrapper 296 B

123456789101112
  1. {% for type in types %}
  2. {% if type=="a" %}
  3. including base a now
  4. {% include "base_a" %}
  5. {% elif type=="b" %}
  6. including base b now
  7. {% include "base_b" %}
  8. {% else %}
  9. including base c now
  10. {% include "base_c" %}
  11. {% endif %}
  12. {% endfor %}