mirror of
https://github.com/fergalmoran/dss.git
synced 2025-12-30 21:49:22 +00:00
27 lines
731 B
HTML
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> |