mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 19:06:27 +00:00
22 lines
288 B
PHP
22 lines
288 B
PHP
<?
|
|
if (!check_perms('users_mod')) {
|
|
error(404);
|
|
}
|
|
|
|
View::show_header("Tests");
|
|
|
|
?>
|
|
<div class="header">
|
|
<h2>Tests</h2>
|
|
<? TestingView::render_linkbox("classes"); ?>
|
|
</div>
|
|
|
|
<div class="thin">
|
|
<? TestingView::render_classes(Testing::get_classes());?>
|
|
</div>
|
|
|
|
<?
|
|
View::show_footer();
|
|
|
|
|