diff options
| author | rubenwardy <rw@rubenwardy.com> | 2020-01-21 22:40:51 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-21 22:40:51 +0000 |
| commit | f24148d43189bd72f7ef7f498f30cdee8700d5e5 (patch) | |
| tree | a67bd8c8373d86496536c096f00682594668f530 /app/templates/users | |
| parent | 980023a80c9055f0102c2308cd1d1d7238deb69e (diff) | |
| download | cheatdb-f24148d43189bd72f7ef7f498f30cdee8700d5e5.tar.xz | |
Improve package page styling
Diffstat (limited to 'app/templates/users')
| -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() }} |
