From 10e7c8186a42d71d6494711b562b92f3e5fd5b7b Mon Sep 17 00:00:00 2001 From: Nik Okuntseff Date: Thu, 5 Apr 2018 12:12:59 +0000 Subject: [PATCH] Renamed admin templates. --- WEB-INF/templates/{admin_team_add.tpl => admin_group_add.tpl} | 0 .../templates/{admin_team_delete.tpl => admin_group_delete.tpl} | 0 WEB-INF/templates/{admin_team_edit.tpl => admin_group_edit.tpl} | 0 WEB-INF/templates/{admin_teams.tpl => admin_groups.tpl} | 1 - WEB-INF/templates/footer.tpl | 2 +- admin_group_add.php | 2 +- admin_group_delete.php | 2 +- admin_group_edit.php | 2 +- admin_groups.php | 2 +- 9 files changed, 5 insertions(+), 6 deletions(-) rename WEB-INF/templates/{admin_team_add.tpl => admin_group_add.tpl} (100%) rename WEB-INF/templates/{admin_team_delete.tpl => admin_group_delete.tpl} (100%) rename WEB-INF/templates/{admin_team_edit.tpl => admin_group_edit.tpl} (100%) rename WEB-INF/templates/{admin_teams.tpl => admin_groups.tpl} (99%) diff --git a/WEB-INF/templates/admin_team_add.tpl b/WEB-INF/templates/admin_group_add.tpl similarity index 100% rename from WEB-INF/templates/admin_team_add.tpl rename to WEB-INF/templates/admin_group_add.tpl diff --git a/WEB-INF/templates/admin_team_delete.tpl b/WEB-INF/templates/admin_group_delete.tpl similarity index 100% rename from WEB-INF/templates/admin_team_delete.tpl rename to WEB-INF/templates/admin_group_delete.tpl diff --git a/WEB-INF/templates/admin_team_edit.tpl b/WEB-INF/templates/admin_group_edit.tpl similarity index 100% rename from WEB-INF/templates/admin_team_edit.tpl rename to WEB-INF/templates/admin_group_edit.tpl diff --git a/WEB-INF/templates/admin_teams.tpl b/WEB-INF/templates/admin_groups.tpl similarity index 99% rename from WEB-INF/templates/admin_teams.tpl rename to WEB-INF/templates/admin_groups.tpl index 40207c8a..ebe88991 100644 --- a/WEB-INF/templates/admin_teams.tpl +++ b/WEB-INF/templates/admin_groups.tpl @@ -40,4 +40,3 @@ - \ No newline at end of file diff --git a/WEB-INF/templates/footer.tpl b/WEB-INF/templates/footer.tpl index b526292a..5cc7edc4 100644 --- a/WEB-INF/templates/footer.tpl +++ b/WEB-INF/templates/footer.tpl @@ -12,7 +12,7 @@
-
 Anuko Time Tracker 1.17.86.4226 | Copyright © Anuko | +  Anuko Time Tracker 1.17.86.4227 | Copyright © Anuko | {$i18n.footer.credits} | {$i18n.footer.license} | {$i18n.footer.improve} diff --git a/admin_group_add.php b/admin_group_add.php index 7904d9f2..3684d6cd 100644 --- a/admin_group_add.php +++ b/admin_group_add.php @@ -115,6 +115,6 @@ if ($request->isPost()) { $smarty->assign('auth_external', $auth->isPasswordExternal()); $smarty->assign('forms', array($form->getName()=>$form->toArray())); $smarty->assign('onload', 'onLoad="document.teamForm.team.focus()"'); -$smarty->assign('content_page_name', 'admin_team_add.tpl'); +$smarty->assign('content_page_name', 'admin_group_add.tpl'); $smarty->assign('title', $i18n->get('title.create_group')); $smarty->display('index.tpl'); diff --git a/admin_group_delete.php b/admin_group_delete.php index 99d508fb..48e60c31 100644 --- a/admin_group_delete.php +++ b/admin_group_delete.php @@ -66,5 +66,5 @@ if ($request->isPost()) { $smarty->assign('team_to_delete', $team_name); $smarty->assign('forms', array($form->getName()=>$form->toArray())); $smarty->assign('title', $i18n->get('title.delete_group')); -$smarty->assign('content_page_name', 'admin_team_delete.tpl'); +$smarty->assign('content_page_name', 'admin_group_delete.tpl'); $smarty->display('index.tpl'); diff --git a/admin_group_edit.php b/admin_group_edit.php index 0efca4f6..317624ab 100644 --- a/admin_group_edit.php +++ b/admin_group_edit.php @@ -105,5 +105,5 @@ $smarty->assign('auth_external', $auth->isPasswordExternal()); $smarty->assign('forms', array($form->getName()=>$form->toArray())); $smarty->assign('onload', 'onLoad="document.teamForm.manager_name.focus()"'); $smarty->assign('title', $i18n->get('title.edit_group')); -$smarty->assign('content_page_name', 'admin_team_edit.tpl'); +$smarty->assign('content_page_name', 'admin_group_edit.tpl'); $smarty->display('index.tpl'); diff --git a/admin_groups.php b/admin_groups.php index a5521ad9..bccbb058 100644 --- a/admin_groups.php +++ b/admin_groups.php @@ -37,5 +37,5 @@ if (!ttAccessAllowed('administer_site')) { $smarty->assign('teams', ttGroupHelper::getTopGroups()); $smarty->assign('title', $i18n->get('title.groups')); -$smarty->assign('content_page_name', 'admin_teams.tpl'); +$smarty->assign('content_page_name', 'admin_groups.tpl'); $smarty->display('index.tpl'); -- 2.20.1