aboutsummaryrefslogtreecommitdiffstats
path: root/admin/themes/default/template/rating_user.tpl
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2011-11-21 20:46:05 +0000
committerrvelices <rv-github@modusoptimus.com>2011-11-21 20:46:05 +0000
commit85a60f15e5745247cc672337480934d357c2fc5d (patch)
tree1bce75cca1b9dcba607bab141568425f83036518 /admin/themes/default/template/rating_user.tpl
parent95325c68cfd80e5203de0f5dcd975aecd49445b8 (diff)
feature 2486: Add an admin view for rates by user (improvement)
git-svn-id: http://piwigo.org/svn/trunk@12650 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/themes/default/template/rating_user.tpl')
-rw-r--r--admin/themes/default/template/rating_user.tpl21
1 files changed, 11 insertions, 10 deletions
diff --git a/admin/themes/default/template/rating_user.tpl b/admin/themes/default/template/rating_user.tpl
index b69815528..72d6a26ce 100644
--- a/admin/themes/default/template/rating_user.tpl
+++ b/admin/themes/default/template/rating_user.tpl
@@ -1,3 +1,5 @@
+<h2>{$ratings|@count} {'Users'|@translate}</h2>
+
<form action="{$F_ACTION}" method="GET">
<fieldset>
<label>{'Sort by'|@translate}
@@ -18,13 +20,12 @@
{footer_script}{literal}
function del(elt,uid,aid)
{
- if (!confirm('{'Are you sure?'|@translate|@escape:'javascript'}'))
+ if (!confirm({/literal}'{'Are you sure?'|@translate|@escape:'javascript'}'{literal}))
return false;
var tr = elt;
while ( tr.nodeName != "TR") tr = tr.parentNode;
tr = jQuery(tr).fadeTo(1000, 0.4);
- var ws = new PwgWS({/literal}'{$ROOT_URL|@escape:javascript}'{literal});
- ws.callService(
+ (new PwgWS({/literal}'{$ROOT_URL|@escape:javascript}'{literal})).callService(
'pwg.rates.delete', {user_id:uid, anonymous_id:aid},
{
method: 'POST',
@@ -40,8 +41,8 @@ function del(elt,uid,aid)
<td>{'Username'|@translate}</td>
<td>{'Number of rates'|@translate}</td>
<td>{'Average rate'|@translate}</td>
- <td>StDev</td>
- <td>CV</td>
+ <td>{'Variation'|@translate}</td>
+ <td>{'Consensus deviation'|@translate|@replace:' ':'<br>'}</td>
{foreach from=$available_rates item=rate}
<td>{$rate}</td>
{/foreach}
@@ -52,8 +53,8 @@ function del(elt,uid,aid)
<td>{$user}</td>
<td>{$rating.count}</td>
<td>{$rating.avg|@number_format:2}</td>
- <td>{$rating.std|@number_format:3}</td>
<td>{$rating.cv|@number_format:3}</td>
+ <td>{$rating.cd|@number_format:3}</td>
{foreach from=$rating.rates item=rates key=rate}
<td>{if !empty($rates)}
{capture assign=rate_over}{foreach from=$rates item=rate_arr}<img src="{$image_urls[$rate_arr.id].tn}" alt="thumb-{$rate_arr.id}" title="{$rate_arr.date}"></img>
@@ -68,9 +69,9 @@ function del(elt,uid,aid)
{combine_script id='jquery.cluetip' load='footer' require='jquery' path='themes/default/js/plugins/jquery.cluetip.js'}
{footer_script require='jquery.cluetip'}
-{literal}
- jQuery('.cluetip').cluetip({
- width: 350, splitTitle: '|'
+jQuery(document).ready(function(){ldelim}
+ jQuery('.cluetip').cluetip({ldelim}
+ width: {$TN_WIDTH}, splitTitle: '|'
});
-{/literal}
+})
{/footer_script} \ No newline at end of file