mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-26 12:27:06 +00:00 
			
		
		
		
	Tags cleanup (#13428)
* Tags cleanup Signed-off-by: jolheiser <john.olheiser@gmail.com> * fmt Signed-off-by: jolheiser <john.olheiser@gmail.com>
This commit is contained in:
		| @@ -449,14 +449,18 @@ func RepoAssignment() macaron.Handler { | ||||
| 			ctx.Data["RepoExternalIssuesLink"] = unit.ExternalTrackerConfig().ExternalTrackerURL | ||||
| 		} | ||||
|  | ||||
| 		ctx.Data["NumReleases"], err = models.GetReleaseCountByRepoID(ctx.Repo.Repository.ID, models.FindReleasesOptions{ | ||||
| 			IncludeDrafts: false, | ||||
| 		ctx.Data["NumTags"], err = models.GetReleaseCountByRepoID(ctx.Repo.Repository.ID, models.FindReleasesOptions{ | ||||
| 			IncludeTags: true, | ||||
| 		}) | ||||
| 		if err != nil { | ||||
| 			ctx.ServerError("GetReleaseCountByRepoID", err) | ||||
| 			return | ||||
| 		} | ||||
| 		ctx.Data["NumReleases"], err = models.GetReleaseCountByRepoID(ctx.Repo.Repository.ID, models.FindReleasesOptions{}) | ||||
| 		if err != nil { | ||||
| 			ctx.ServerError("GetReleaseCountByRepoID", err) | ||||
| 			return | ||||
| 		} | ||||
|  | ||||
| 		ctx.Data["Title"] = owner.Name + "/" + repo.Name | ||||
| 		ctx.Data["Repository"] = repo | ||||
|   | ||||
| @@ -810,6 +810,7 @@ commits = Commits | ||||
| commit = Commit | ||||
| release = Release | ||||
| releases = Releases | ||||
| tag = Tag | ||||
| released_this = released this | ||||
| file_raw = Raw | ||||
| file_history = History | ||||
|   | ||||
| @@ -10,7 +10,7 @@ | ||||
| 				</div> | ||||
| 				{{if $.Permission.CanRead $.UnitTypeCode}} | ||||
| 					<div class="item"> | ||||
| 						<a class="ui" href="{{.RepoLink}}/tags">{{svg "octicon-tag"}} <b>{{.NumReleases}}</b> {{.i18n.Tr (TrN .i18n.Lang .NumReleases "repo.release" "repo.releases") }}</a> | ||||
| 						<a class="ui" href="{{.RepoLink}}/tags">{{svg "octicon-tag"}} <b>{{.NumTags}}</b> {{.i18n.Tr (TrN .i18n.Lang .NumTags "repo.tag" "repo.tags") }}</a> | ||||
| 					</div> | ||||
| 				{{end}} | ||||
| 				<div class="item"> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 John Olheiser
					John Olheiser