<div class="flc-admin">
	<div class="page-header">
		<h1>Your Sections</h1>
	</div>
	<div class="clearfix"></div>
	<a class="btn btn-primary pull-right zoom2" href="<?php echo add_query_arg( array( 'action' => 'add' )); ?>"><span class="glyphicon glyphicon-plus"></span>&nbsp;Add Section</a>
	<div class="clearfix"></div>
	<div class="table-holder">
		<form method="post" action="">
<?php
	require_once "{$this->source->plugin_dir}oo/FLCSectionsTable.php";
	$queue_table = new FLCSectionsTable( 
				$this->source->db->get_all( 
					$this->source->plugin_tables['sections']
				)
	);
	$queue_table->prepare_items();
	$queue_table->display();
?>
		</form>
	</div>
</div>
