aboutsummaryrefslogtreecommitdiff
path: root/automation/server/monitor/templates/snippet_code.html
blob: 281754d60c146727e9c83993e2679adaccc7455d (plain)
1
2
3
4
5
6
7
8
9
10
<table class="raw">
<tbody>
{% for num, line in code %}
<tr class="{% cycle 'line1' 'line2' %}">
  <td>{{ num }}</td>
  <td><pre class="code">{{ line|wordwrap:120 }}</pre></td>
</tr>
{% endfor %}
</tbody>
</table>