diff --git a/htdocs/admin/triggers.php b/htdocs/admin/triggers.php
index 7710b8e0490..3d9ebbd1d29 100644
--- a/htdocs/admin/triggers.php
+++ b/htdocs/admin/triggers.php
@@ -52,7 +52,27 @@ $template_dir = DOL_DOCUMENT_ROOT.'/core/tpl/';
$interfaces = new Interfaces($db);
$triggers = $interfaces->getTriggersList(0,'priority');
-include $template_dir.'triggers.tpl.php';
+print '
+
+| '.$langs->trans("File").' |
+'.$langs->trans("Active").' |
+ |
+
+';
+
+$var=True;
+foreach ($triggers as $trigger)
+{
+ $var=!$var;
+ print '';
+ print '| '.$trigger['picto'].' | ';
+ print ''.$trigger['file'].' | ';
+ print ''.$trigger['status'].' | ';
+ print ''.$form->textwithpicto('', $trigger['info']).' | ';
+ print '
';
+}
+
+print '
';
llxFooter();
diff --git a/htdocs/core/tpl/triggers.tpl.php b/htdocs/core/tpl/triggers.tpl.php
deleted file mode 100644
index ad933e43cd9..00000000000
--- a/htdocs/core/tpl/triggers.tpl.php
+++ /dev/null
@@ -1,53 +0,0 @@
-
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see .
- *
- */
-?>
-
-
-
-
-
-| trans("File"); ?> |
-trans("Version"); ?> |
-trans("Active"); ?> |
- |
-
-
-
-
->
-
- |
- |
- |
- |
-textwithpicto('', $trigger['info']); ?> |
-
-
-
-
-
-
-
-
\ No newline at end of file