1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{% extends "user.html" %}
<!-- user_reputation.html -->
{% load extra_tags %}
{% load extra_filters %}
{% load humanize %}
{% load user_tags %}
{% block userjs %}
<script type='text/javascript' src='{% media "/media/js/excanvas.min.js" %}'></script>
<script type='text/javascript' src='{% media "/media/js/jquery.flot.min.js" %}'></script>
<script type="text/javascript">
$().ready(function(){
var d = {{ graph_data }};
var placeholder = $("#diagram");
var plot = $.plot(placeholder, [d], {
xaxis: { mode: "time" },
points: { show: true },
lines: { show: true }
});
});
</script>
<style type="text/css">
div.positiveReputation {
float: left;
min-width: 20px;
color: green;
padding-right: 5px;
}
div.negativeReputation {
float: left;
min-width: 20px;
color: red;
}
</style>
{% endblock %}
{% block usercontent %}
<div style="padding:5px;font-size:13px;">
<div id="diagram" style="width:550px;height:250px;float:left">
</div>
<div style="float:right; width:385px; height:300px; overflow-y:auto;word-wrap:break-word;" >
{% for rep in reputation %}
<p style="clear:both">
<div style="float:left;text-align:right;font-family:arial;font-weight:bold;background:#eee;padding:2px 10px 2px 10px;margin-right:5px">
<div class="positiveReputation">{{ rep.positive }}</div>
<div class="negativeReputation">{{ rep.negative }}</div>
</div>
{% activity_item rep.action request.user %}<br/>
</p>
{% endfor %}
</div>
</div>
{% endblock %}<!-- end user_reputation.html -->