diff options
author | silverwind <me@silverwind.io> | 2022-08-25 23:55:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-25 17:55:52 -0400 |
commit | 6c4688e1b1ddb68de192af7f83b06de27baae85e (patch) | |
tree | 554b4e7d97c843590031aab058ba1c66474c405f /templates/admin/notice.tmpl | |
parent | 27ac65a124f34ec3ed5f34aeb576f918ae1c70b1 (diff) | |
download | gitea-6c4688e1b1ddb68de192af7f83b06de27baae85e.tar.gz gitea-6c4688e1b1ddb68de192af7f83b06de27baae85e.zip |
Add whitespace removal inside template curly brackes (#20853)
Diffstat (limited to 'templates/admin/notice.tmpl')
-rw-r--r-- | templates/admin/notice.tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/admin/notice.tmpl b/templates/admin/notice.tmpl index 7d0fa0019a..b831f50c85 100644 --- a/templates/admin/notice.tmpl +++ b/templates/admin/notice.tmpl @@ -34,7 +34,7 @@ </tr> {{end}} </tbody> - {{ if .Notices }} + {{if .Notices}} <tfoot class="full-width"> <tr> <th></th> @@ -65,11 +65,11 @@ </th> </tr> </tfoot> - {{ end }} + {{end}} </table> </div> - {{ template "base/paginate" . }} + {{template "base/paginate" .}} </div> </div> |