protected function RenderContent()
    {
        $items = Organization::Get();
        ?>
		<table class="ListView" style="width: 100%;">
			<tr>
				<th>Title</th>
			</tr>
			<?php 
        foreach ($items as $item) {
            ?>
					<tr>
						<td><a href="<?php 
            echo System::ExpandRelativePath("~/organizations/modify/" . $item->ID);
            ?>
"><?php 
            echo $item->Title;
            ?>
</a></td>
					</tr>
					<?php 
        }
        ?>
		</table>
		<?php 
    }