You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gitea/templates
Lunny Xiao cc27b50bdf
Fix a bug returning 404 when display a single tag with no release (#29466)
Partially caused by #29149 

When use

```go
releases, err := getReleaseInfos(ctx, &repo_model.FindReleasesOptions{
		ListOptions: db.ListOptions{Page: 1, PageSize: 1},
		RepoID:      ctx.Repo.Repository.ID,
		TagNames:    []string{ctx.Params("*")},
		// only show draft releases for users who can write, read-only users shouldn't see draft releases.
		IncludeDrafts: writeAccess,
	})
```
replace
```go
release, err := repo_model.GetRelease(ctx, ctx.Repo.Repository.ID, ctx.Params("*"))
```
It missed `IncludeTags: true,`. That means this bug will be occupied only when the release is a tag.
This PR will fix

 - Get the right tag record when it's not a release
 - Display correct tag tab but not release tag when it's a tag.
- The button will bring the tag name to the new page when it's a single tag page
- the new page will automatically hide the release target inputbox when the tag name is pre filled. This should be backport to v1.21.
11 months ago
..
admin Use tailwind instead of `gt-[wh]-` helper classes (#29423) 11 months ago
api/packages/pypi Remove incorrect HTML self close tag (#23748) 2 years ago
base Rename Str2html to SanitizeHTML and clarify its behavior (#29516) 11 months ago
code Remove incorrect and unnecessary Escape from templates (#29394) 12 months ago
custom Add footer extra links template (#9576) 5 years ago
devtest Use tailwind instead of `gt-[wh]-` helper classes (#29423) 11 months ago
explore Only use supported sort order for "explore/users" page (#29430) 11 months ago
mail Rename Str2html to SanitizeHTML and clarify its behavior (#29516) 11 months ago
org Refactor some Str2html code (#29397) 11 months ago
package Refactor some Str2html code (#29397) 11 months ago
projects Refactor some Str2html code (#29397) 11 months ago
repo Fix a bug returning 404 when display a single tag with no release (#29466) 11 months ago
shared Refactor some Str2html code (#29397) 11 months ago
status Rename Str2html to SanitizeHTML and clarify its behavior (#29516) 11 months ago
swagger Add admin API route for managing user's badges (#23106) 11 months ago
user Allow options to disable user gpg keys configuration from the interface on app.ini (#29486) 11 months ago
webhook Change webhook-type in create-view (#29114) 12 months ago
home.tmpl Remove unnecessary "Str2html" modifier from templates (#29319) 12 months ago
install.tmpl Remove unnecessary "Safe" modifier from templates (#29318) 12 months ago
post-install.tmpl Always use `ctx.Locale.Tr` inside templates (#27231) 1 year ago