diff options
Diffstat (limited to 'app/templates/users/list.html')
| -rw-r--r-- | app/templates/users/list.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/templates/users/list.html b/app/templates/users/list.html index 345a039..da3d120 100644 --- a/app/templates/users/list.html +++ b/app/templates/users/list.html @@ -7,8 +7,8 @@ {% block content %} <ul class="userlist"> {% for user in users %} - <li class="{{ user.rank }}"> - <a href="{{ url_for('users.profile', username=user.username) }}"> + <li> + <a href="{{ url_for('users.profile', username=user.username) }}" class="{{ user.rank }}"> {{ user.display_name }} </a> - {{ user.rank.getTitle() }} |
