<div class="row left">
	@if($mode == "management")
	<h2>Forum Management</h2>
	<a href="/dashboard/storyteller/manage/forums/new">
		<button class="button small right">
			<i class="icon-plus"></i>
			New Forum
		</button>
	</a>
	
	<p>
		Note: Trashed forums are recoverable; they're flagged as hidden.
	</p>
	
	<?php 
$categories = ForumCategory::orderBy('display_order')->get();
$categories->add((object) ['name' => "Trashed", 'id' => 0]);
$categories->add((object) ['name' => 'Unassociated', 'id' => 0]);
?>
	@foreach($categories as $category)
		<h4>{{$category->name}}</h4>
		<table class="responsive">
			<thead>
				<th style="width: 90px">Actions</th>
				<th>Forum Name</th>
				<th>Sect Restriction</th>
				<th>Clan Restriction</th>
				<th>Background Restriction</th>
				<th>Read Permission</th>
				<th>Create Topic Permission</th>			
				<th>Reply Permission</th>