Skip to content

Instantly share code, notes, and snippets.

@krams915
Created September 15, 2011 03:53
Show Gist options
  • Save krams915/1218486 to your computer and use it in GitHub Desktop.
Save krams915/1218486 to your computer and use it in GitHub Desktop.
Event Table (DataTables version) - table
<h3 class="title">Events - DataTables Version</h3>
<table id='eventTable'>
<thead>
<tr>
<th></th>
<th>Id</th>
<th>Name</th>
<th>Description</th>
<th>Participants</th>
<th>Date</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<c:if test="${empty events}">There are currently no events in the list.</c:if>
<div class="control">
<span><a href="#" id="addLink">Add</a></span>
<span><a href="#" id="editLink">Edit</a></span>
<span><a href="#" id="deleteLink">Delete</a></span>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment