Skip to content

Instantly share code, notes, and snippets.

@cnorthwood
Created February 17, 2011 16:13
Show Gist options
  • Save cnorthwood/832012 to your computer and use it in GitHub Desktop.
Save cnorthwood/832012 to your computer and use it in GitHub Desktop.
<div class="section">
<div class="header">
<h2>{{ title }}</h2>
</div>
<table class="content">
<thead>
<tr>
<th>Line</th>
<th>Status</th>
</tr>
</thead>
<tbody>
{% for status in statuses %}
<tr>
<td>{{ status.line_name }}</td>
<td>{{ status.status }}
{% if status.disruption_reason %}<br/>{{ status.disruption_reason }}{% endif %}
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment