Untitled

Anonymous
plain_text
03/02/2024 11:24 PM
776 B
11
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