From 3fdf243115fddcb73b754ef269a349f229644f10 Mon Sep 17 00:00:00 2001
From: CupCakeArmy <nicco.borgioli@gmail.com>
Date: Sat, 2 Apr 2016 13:08:24 +0200
Subject: [PATCH] First Tool

Proof of concept
---
 admin/tools/users.tool | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/admin/tools/users.tool b/admin/tools/users.tool
index d87d360..29eccb1 100644
--- a/admin/tools/users.tool
+++ b/admin/tools/users.tool
@@ -1 +1,15 @@
-<h1>Test</h1>
\ No newline at end of file
+<div class="users">
+  
+</div>
+<style>
+  .users {
+	  width: 100%;
+	  height: 100%;
+  }
+</style>
+<script type="text/javascript">
+  amivcore.users.GET({}, function(ret){
+	  console.log(ret);
+	  $('.users').html(JSON.stringify(ret));
+  });
+</script>
\ No newline at end of file
-- 
GitLab