forked from science-ation/science-ation
15 lines
617 B
PHP
15 lines
617 B
PHP
<?
|
|
require("../common.inc.php");
|
|
send_header("Configuration");
|
|
echo error(i18n("Note: this section will normally be password protected. It is left open for now for debugging and testing purposes"));
|
|
|
|
echo "<a href=\"variables.php\">Configuration Variables</a> <br />";
|
|
echo "<a href=\"dates.php\">Important Dates</a> <br />";
|
|
echo "<a href=\"categories.php\">Project Age Categories</a> <br />";
|
|
echo "<a href=\"divisions.php\">Project Divisons</a> <br />";
|
|
echo "<a href=\"subdivisions.php\">Project Sub-Divisons</a> <br />";
|
|
echo "<a href=\"images.php\">Images (Fair Logo)</a> <br />";
|
|
|
|
send_footer();
|
|
?>
|