{# copypasta :( #} <div class="scheme{{ color_scheme }}"> <table class="inflection-table"> {% for row in table %} <tr> {% for cell in row %} {% if cell.type != "span" %} {% if cell.type == "empty" %} <td class="empty"></td> {% else %} {% if cell.type == "forms" %} <td rowspan="{{ cell.rowspan }}" colspan="{{ cell.colspan }}" {% if cell.colspan > 1 %}class="data-c"{% endif %}> <ul class="form-list"> {% for entry in cell.forms %} <li> {{ entry.form }} <span class="qualifiers"> {% for q in entry.qualifiers %} {{ q.label }} {% endfor %} </span> </li> {% endfor %} </ul> </td> {% else %} <td rowspan="{{ cell.rowspan }}" colspan="{{ cell.colspan }}" {% if cell.colspan > 1 and cell.css_class == 'data' %} class="data-c" {% else %}class="{{ cell.css_class }}"{% endif %}> <ul class="form-list"> {% for label in cell.label %} <li> {{ label|safe }} </li> {% endfor %} </ul> </td> {% endif %} {% endif %} {% endif %} {% endfor %} </tr> {% endfor %} </table> </div>