Files
dss/templates/views/EventListView.html
2012-09-26 20:24:33 +01:00

27 lines
731 B
HTML

<div id="title-area">
<p class="page-header">Upcoming Events
{% if user.is_staff %}
<a class="btn pull-right" href="/event/add">
Add event
</a>
{% endif %}
</p>
</div>
<div id="layout-area" class="hero-well">
<table id="event-table" class="table table-bordered table-striped">
<thead>
<tr>
<th>What</th>
<th>Where</th>
<th>When</th>
</tr>
</thead>
<tbody id="event-list-container" data-provides="rowlink">
<tr id="tablesorter-fix">
<th>Nothing</th>
<th>To See</th>
<th>Here</th>
</tr>
</tbody>
</table>
</div>