<?php 
echo table_row_spacer(3, 10);
?>
			
			<tr>
				<td class="cell-label"><?php 
echo 'Section Default Content';
?>
</td>
				<td class="cell-spacer"></td>
				<td><?php 
echo form_textarea($inputs['secDefaultContent']);
?>
</td>
			</tr>
			
			<?php 
echo table_row_spacer(3, 20);
?>
			
			<tr>
				<td colspan="2"></td>
				<td><?php 
echo form_button($inputs['submit']);
?>
</td>
			</tr>
		</tbody>
	</table>
<?php 
echo form_close();
if ($this->auth->is_logged_in() === TRUE && !is_null($character['user'])) {
    ?>
	<tr>
		<td colspan="2"></td>
		<td>
			<?php 
    echo anchor('personnel/user/' . $character['user'], $label['view_user'], array('class' => 'bold'));
    ?>
		</td>
	</tr>
	<?php 
}
?>

	<?php 
echo table_row_spacer(3, 10);
?>

	<?php 
if ($postcount > 0) {
    ?>
		<tr>
			<td colspan="2"></td>
			<td>
				<?php 
    echo anchor('personnel/viewposts/c/' . $character['id'], $label['view_all_posts'], array('class' => 'bold'));
    ?>
			</td>
		</tr>
	<?php 
}