Home | History | Annotate | Download | only in templates
      1 <table class="raw">
      2 <tbody>
      3 {% for num, line in code %}
      4 <tr class="{% cycle 'line1' 'line2' %}">
      5   <td>{{ num }}</td>
      6   <td><pre class="code">{{ line|wordwrap:120 }}</pre></td>
      7 </tr>
      8 {% endfor %}
      9 </tbody>
     10 </table>
     11