aboutsummaryrefslogtreecommitdiff
path: root/app/templates/packages/view.html
diff options
context:
space:
mode:
authorrubenwardy <rw@rubenwardy.com>2020-07-18 02:54:40 +0100
committerrubenwardy <rw@rubenwardy.com>2020-07-18 02:54:40 +0100
commitdd7146205acda0b87f773b110d171c6a345c987d (patch)
tree580344f75f4b506bb303fb5e77e289bc0c41c6b3 /app/templates/packages/view.html
parent68a132f271b04eb7c1812609c6be4f78960fad22 (diff)
downloadcheatdb-dd7146205acda0b87f773b110d171c6a345c987d.tar.xz
Add description title tooltips to tags
Diffstat (limited to 'app/templates/packages/view.html')
-rw-r--r--app/templates/packages/view.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/templates/packages/view.html b/app/templates/packages/view.html
index f2c22e3..560ee82 100644
--- a/app/templates/packages/view.html
+++ b/app/templates/packages/view.html
@@ -56,7 +56,10 @@
{% endfor %}
{% for t in package.tags %}
<a class="badge badge-primary" rel="nofollow"
- href="{{ url_for('packages.list_all', tag=t.name) }}">{{ t.title }}</a>
+ title="{{ t.description or '' }}"
+ href="{{ url_for('packages.list_all', tag=t.name) }}">
+ {{ t.title }}
+ </a>
{% endfor %}
</p>