blob: f3ccd6e9380421e5ba2b16523fc15130e3badf7e (
plain)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
{% extends "base.html" %}
<!-- users.html -->
{% load extra_tags %}
{% load humanize %}
{% load i18n %}
{% block title %}{% spaceless %}{% trans "Users" %}{% endspaceless %}{% endblock %}
{% block forejs %}
<script type="text/javascript">
//todo move javascript out
$().ready(function(){
$("#nav_users").attr('className',"on");
$("#type-user").attr('checked',true);
var orderby = "{{ tab_id }}";
$("#sort_" + orderby).attr('className',"on");
Hilite.exact = false;
Hilite.elementid = "main-body";
Hilite.debug_referrer = location.href;
});
</script>
{% endblock %}
{% block content %}
<div class="tabBar">
<div class="headUsers">{% trans "Users" %}</div>
<div class="tabsA">
<a id="sort_reputation" href="{% url users %}?sort=reputation" class="off" title="{% trans "reputation" %}">{% trans "reputation" %}</a>
<a id="sort_newest" href="{% url users %}?sort=newest" class="off" title="{% trans "recent" %}">{% trans "recent" %}</a>
<a id="sort_last" href="{% url users %}?sort=last" class="off" title="{% trans "oldest" %}">{% trans "oldest" %}</a>
<a id="sort_user" href="{% url users %}?sort=user" class="off" title="{% trans "by username" %}">{% trans "by username" %}</a>
</div>
</div>
<div id="main-body" style="width:100%">
<p>
{% if suser %}
{% blocktrans %}users matching query {{suser}}:{% endblocktrans %}
{% endif %}
{% if not users.object_list %}
<span>{% trans "Nothing found." %}</span>
{% endif %}
</p>
<div class="userList">
<table class="list-table">
<tr>
<td class="list-td">
{% for user in users.object_list %}
<div class="user">
<ul>
<li class="thumb">{% gravatar user 32 %}</li>
<li><a href="{% url user_profile user.id user.username|slugify %}">{{user.username}}</a></li>
<li>{% get_score_badge user %}</li>
</ul>
</div>
{% if forloop.counter|divisibleby:"7" %}
</td>
<td>
{% endif %}
{% endfor %}
</td>
</tr>
</table>
</div>
</div>
{% endblock %}
{% block tail %}
<div class="pager">
{% cnprog_paginator context %}
</div>
{% endblock %}
<!-- end users.html -->
|