diff options
author | Yarden Shoham <git@yardenshoham.com> | 2023-05-26 19:58:11 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-26 18:58:11 +0200 |
commit | abccb86b36d8c9e680768fcff0c0dc05f1cd9447 (patch) | |
tree | 396ebe7c76696c7c275f06dd5e45e49cd5478e67 /templates/shared/user | |
parent | 85fa954a3810b233cb299f455546c4b2314400b3 (diff) | |
download | gitea-abccb86b36d8c9e680768fcff0c0dc05f1cd9447.tar.gz gitea-abccb86b36d8c9e680768fcff0c0dc05f1cd9447.zip |
Show `bot` label next to username when rendering autor link if the user is a bot (#24943)
If the user is a bot, we'll add a label next to the author link that
says `bot`. I didn't localize `bot` because passing `locale` into the
`autorlink` template would require changing all calls.
# Example
`yardenshoham` is a bot.
## Before
![image](https://github.com/go-gitea/gitea/assets/20454870/77390780-b763-4f0f-b358-bbccdbf17a5d)
## After
![image](https://github.com/go-gitea/gitea/assets/20454870/72af342f-ee76-4337-95ad-4ecaba853fed)
---------
Signed-off-by: Yarden Shoham <git@yardenshoham.com>
Diffstat (limited to 'templates/shared/user')
-rw-r--r-- | templates/shared/user/authorlink.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/shared/user/authorlink.tmpl b/templates/shared/user/authorlink.tmpl index 71cbb8676e..64ccc62cd0 100644 --- a/templates/shared/user/authorlink.tmpl +++ b/templates/shared/user/authorlink.tmpl @@ -1 +1 @@ -<a class="author text black gt-font-semibold muted"{{if gt .ID 0}} href="{{.HomeLink}}"{{end}}>{{.GetDisplayName}}</a> +<a class="author text black gt-font-semibold muted"{{if gt .ID 0}} href="{{.HomeLink}}"{{end}}>{{.GetDisplayName}}</a>{{if .IsBot}}<span class="ui basic label gt-p-2">bot</span>{{end}} |