From 2bdad0ae7a3a6e4ec5116becd39910388b679ed2 Mon Sep 17 00:00:00 2001 From: Leif Johansson Date: Thu, 4 Oct 2012 15:39:08 +0200 Subject: restructure --- src/templates/apps/stats/user.html | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 src/templates/apps/stats/user.html (limited to 'src/templates/apps/stats/user.html') diff --git a/src/templates/apps/stats/user.html b/src/templates/apps/stats/user.html deleted file mode 100644 index 8b08c6c..0000000 --- a/src/templates/apps/stats/user.html +++ /dev/null @@ -1,31 +0,0 @@ -{% extends "base.html" %} -{% load datehumanize %} -{% block widgets %} -$.ajax({ - url: '/api/stats/user/{{username}}', - method: 'GET', - success: function (resp) { - var graph = $('#graph'); - series = [{label: 'Meeting minutes for {{username}}',data: resp['data']}]; - $.plot(graph,series,{ - lines: { show: true }, - points: { show: true }, - xaxis: { mode: "time" } - }); - $('#minutes').append(resp['minutes']); - $('#rooms').append(resp['rooms']); - } -}); -{% endblock %} -{% block content %} -

Meeting statistics for {{username}}

-
-
-

Summary

- - - - -
Total minutes:
Total rooms:
Look at statistics for {{domain}}
-
-{% endblock %} \ No newline at end of file -- cgit v1.1