Responsive design;

New menus (members);
Improved interface for parent editing;
This commit is contained in:
Ricsi
2016-12-03 11:10:28 +01:00
parent 289f409405
commit 303f26587f
69 changed files with 2037 additions and 2111 deletions

View File

@@ -0,0 +1,30 @@
<?php
# HA NINCS ID, AKKOR VÁROSLISTA
if ($this->is_id()) {
# VÁROS SZERKESZTÉSE
}
else {
# VÁROS LISTA
$scc_query = "SELECT * FROM school_city ORDER BY scc_city ASC";
$scc_assoc_array = $sql->assoc_array($scc_query);
$smarty->assign('scc_assoc_array',$scc_assoc_array);
$smarty->display('city_list.tpl');
}
?>