Untitled

 avatar
unknown
plain_text
a year ago
582 B
3
Indexable
        <!-- Active Population List -->
          <td>
            <table>
              {% for row in student_population %}
              <tr>
                {% for cell in row %}
                <td>
                  <a
                    class="full-cell-link"
                    href="/populations/{{ row.course }}/{{ row.period }}/{{ row.year }}"
                  >
                    {{ cell }}
                  </a>
                </td>
                {% endfor %}
              </tr>
              {% endfor %}
            </table>
          </td>
Editor is loading...
Leave a Comment