index.html (525B)
1 {% extends "base.html" %} 2 {% block content %} 3 <table> 4 <tr> 5 <th></th> 6 {% for th in headers %} 7 <th>{{ th | replace( " ", " " ) | safe }}</th> 8 {% endfor %} 9 </tr> 10 {% for i in headers %} 11 <tr> 12 <th> {{ i | replace( " ", " " ) | safe }} </th> 13 {% for j in headers %} 14 <td> <a href="{{ j + i }}.html">X</a> </td> 15 {% endfor %} 16 </tr> 17 {% endfor %} 18 </table> 19 {% endblock %} 20