diff options
author | rubenwardy <rw@rubenwardy.com> | 2020-07-09 00:02:56 +0100 |
---|---|---|
committer | rubenwardy <rw@rubenwardy.com> | 2020-07-09 00:02:56 +0100 |
commit | bbf1143090a4b70b3226547d243b54685f8c6af2 (patch) | |
tree | ae717b802a1104962ab9af00a33df5f45d2a6649 | |
parent | 2a37608cb0d8b02add63a6aa7ebeba7c2680df61 (diff) | |
download | cheatdb-bbf1143090a4b70b3226547d243b54685f8c6af2.tar.xz |
Fix incorrect link in maintainers list
-rw-r--r-- | app/templates/packages/view.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/templates/packages/view.html b/app/templates/packages/view.html index 429e4bd..ceae631 100644 --- a/app/templates/packages/view.html +++ b/app/templates/packages/view.html @@ -268,7 +268,7 @@ {% for user in package.maintainers %} <a class="badge badge-primary" - href="{{ url_for('users.profile', username=package.author.username) }}"> + href="{{ url_for('users.profile', username=user.username) }}"> {{ user.display_name }} </a> {% endfor %} |