diff options
| author | rubenwardy <rw@rubenwardy.com> | 2020-07-18 02:54:40 +0100 |
|---|---|---|
| committer | rubenwardy <rw@rubenwardy.com> | 2020-07-18 02:54:40 +0100 |
| commit | dd7146205acda0b87f773b110d171c6a345c987d (patch) | |
| tree | 580344f75f4b506bb303fb5e77e289bc0c41c6b3 /app/templates/packages/view.html | |
| parent | 68a132f271b04eb7c1812609c6be4f78960fad22 (diff) | |
| download | cheatdb-dd7146205acda0b87f773b110d171c6a345c987d.tar.xz | |
Add description title tooltips to tags
Diffstat (limited to 'app/templates/packages/view.html')
| -rw-r--r-- | app/templates/packages/view.html | 5 |
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> |
