aboutsummaryrefslogtreecommitdiffstats
path: root/admin/themes/default/template/rating_user.tpl
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2011-11-14 20:10:37 +0000
committerrvelices <rv-github@modusoptimus.com>2011-11-14 20:10:37 +0000
commit2f87684e097c087b18b6630878e5545c5c37699e (patch)
tree3745a7076294bec0b339cbe5769ed9a99b95262f /admin/themes/default/template/rating_user.tpl
parentf59e5bf46ab8de2e54538bd43e85b33b68cc7a18 (diff)
feature 2486: Add an admin view for rates by user
git-svn-id: http://piwigo.org/svn/trunk@12624 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/themes/default/template/rating_user.tpl')
-rw-r--r--admin/themes/default/template/rating_user.tpl76
1 files changed, 76 insertions, 0 deletions
diff --git a/admin/themes/default/template/rating_user.tpl b/admin/themes/default/template/rating_user.tpl
new file mode 100644
index 000000000..b69815528
--- /dev/null
+++ b/admin/themes/default/template/rating_user.tpl
@@ -0,0 +1,76 @@
+<form action="{$F_ACTION}" method="GET">
+<fieldset>
+ <label>{'Sort by'|@translate}
+ <select name="order_by">
+ {html_options options=$order_by_options selected=$order_by_options_selected}
+ </select>
+ </label>
+ <label>{'Number of rates'|@translate}&gt;
+ <input type="text" size="5" name="f_min_rates" value="{$F_MIN_RATES}">
+ </label>
+ <input type="submit" value="{'Submit'|@translate}">
+ </label>
+ <input type="hidden" name="page" value="rating_user">
+</fieldset>
+</form>
+
+{combine_script id='core.scripts' load='async' path='themes/default/js/scripts.js'}
+{footer_script}{literal}
+function del(elt,uid,aid)
+{
+ if (!confirm('{'Are you sure?'|@translate|@escape:'javascript'}'))
+ 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(
+ 'pwg.rates.delete', {user_id:uid, anonymous_id:aid},
+ {
+ method: 'POST',
+ onFailure: function(num, text) { tr.stop(); tr.fadeTo(0,1); alert(num + " " + text); },
+ onSuccess: function(result) { if (result) {tr.remove();} else alert(result); }
+ }
+ );
+ return false;
+}
+{/literal}{/footer_script}
+<table>
+<tr class="throw">
+ <td>{'Username'|@translate}</td>
+ <td>{'Number of rates'|@translate}</td>
+ <td>{'Average rate'|@translate}</td>
+ <td>StDev</td>
+ <td>CV</td>
+{foreach from=$available_rates item=rate}
+ <td>{$rate}</td>
+{/foreach}
+ <td></td>
+</tr>
+{foreach from=$ratings item=rating key=user}
+<tr>
+ <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>
+ {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>
+ {/foreach}{/capture}
+ <a class="cluetip" title="{$rate_over|@htmlspecialchars}">{$rates|@count}</a>
+ {/if}</td>
+ {/foreach}
+ <td><a onclick="return del(this,{$rating.uid},'{$rating.aid}');"><img src="{$themeconf.admin_icon_dir}/delete.png" alt="[{'Delete'|@translate}]"></a></td>
+</tr>
+{/foreach}
+</table>
+
+{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: '|'
+ });
+{/literal}
+{/footer_script} \ No newline at end of file