From f417f86684f958c500f1897f890b96ef7f8d43e1 Mon Sep 17 00:00:00 2001 From: afornerot Date: Mon, 17 Jun 2019 17:39:35 +0200 Subject: [PATCH] svg --- .../Resources/views/Config/permmodo.html.twig | 49 +++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 src/ninegate-1.0/src/Cadoles/CoreBundle/Resources/views/Config/permmodo.html.twig diff --git a/src/ninegate-1.0/src/Cadoles/CoreBundle/Resources/views/Config/permmodo.html.twig b/src/ninegate-1.0/src/Cadoles/CoreBundle/Resources/views/Config/permmodo.html.twig new file mode 100644 index 00000000..bf27e211 --- /dev/null +++ b/src/ninegate-1.0/src/Cadoles/CoreBundle/Resources/views/Config/permmodo.html.twig @@ -0,0 +1,49 @@ +{% extends '@CadolesCore/base.html.twig' %} + +{% block pagewrapper %} +
+

Modération

+ +
+
+ Permissions Modérateur +
+ +
+
+ + + + + + + + + + {% for permmodo in permmodos %} + + + + + {% endfor %} +
ActionPermission
{{ permmodo.label}} + {% if permmodo.visible %} oui {%else%} non {%endif %} +
+
+
+
+
+{% endblock %} + +{% block localjavascript %} + function showInfo(id) { + $("#modalinfo #modalinfotext").html($("#"+id).attr("data").replace(/\n/g, "
")); + } + + + $(document).ready(function() { + $('#dataTables').DataTable({ + responsive: true, + }); + }); +{% endblock %}