gt2_cheat_sheet

Globetrotter 2 Cheat Sheet
Log | Files | Refs | README

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( " ", "&nbsp;" ) | safe }}</th>
      8         {% endfor %}
      9         </tr>
     10         {% for i in headers %}
     11             <tr>
     12             <th> {{ i | replace( " ", "&nbsp;" ) | 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