mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	Fix mirror template bug (#19959)
* Fix mirror template bug Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> Co-authored-by: delvh <dev.lh@web.de>
This commit is contained in:
		| @@ -380,24 +380,16 @@ func repoAssignment(ctx *Context, repo *repo_model.Repository) { | |||||||
| 	ctx.Data["Permission"] = &ctx.Repo.Permission | 	ctx.Data["Permission"] = &ctx.Repo.Permission | ||||||
|  |  | ||||||
| 	if repo.IsMirror { | 	if repo.IsMirror { | ||||||
|  | 		ctx.Repo.Mirror, err = repo_model.GetMirrorByRepoID(ctx, repo.ID) | ||||||
| 		// Check if the mirror has finsihed migrationg, only then we can | 		if err == nil { | ||||||
| 		// lookup the mirror informtation the database. |  | ||||||
| 		finishedMigrating, err := models.HasFinishedMigratingTask(repo.ID) |  | ||||||
| 		if err != nil { |  | ||||||
| 			ctx.ServerError("HasFinishedMigratingTask", err) |  | ||||||
| 			return |  | ||||||
| 		} |  | ||||||
| 		if finishedMigrating { |  | ||||||
| 			ctx.Repo.Mirror, err = repo_model.GetMirrorByRepoID(ctx, repo.ID) |  | ||||||
| 			if err != nil { |  | ||||||
| 				ctx.ServerError("GetMirrorByRepoID", err) |  | ||||||
| 				return |  | ||||||
| 			} |  | ||||||
| 			ctx.Repo.Mirror.Repo = repo | 			ctx.Repo.Mirror.Repo = repo | ||||||
|  | 			ctx.Data["IsPullMirror"] = true | ||||||
| 			ctx.Data["MirrorEnablePrune"] = ctx.Repo.Mirror.EnablePrune | 			ctx.Data["MirrorEnablePrune"] = ctx.Repo.Mirror.EnablePrune | ||||||
| 			ctx.Data["MirrorInterval"] = ctx.Repo.Mirror.Interval | 			ctx.Data["MirrorInterval"] = ctx.Repo.Mirror.Interval | ||||||
| 			ctx.Data["Mirror"] = ctx.Repo.Mirror | 			ctx.Data["Mirror"] = ctx.Repo.Mirror | ||||||
|  | 		} else if err != repo_model.ErrMirrorNotExist { | ||||||
|  | 			ctx.ServerError("GetMirrorByRepoID", err) | ||||||
|  | 			return | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
|   | |||||||
| @@ -37,9 +37,10 @@ | |||||||
| 						{{end}} | 						{{end}} | ||||||
| 					</div> | 					</div> | ||||||
| 				</div> | 				</div> | ||||||
| 				{{if .IsMirror}} | 				{{if $.IsPullMirror}} | ||||||
| 				{{$address := MirrorRemoteAddress $.Context . $.Mirror.GetRemoteName}} | 					{{$address := MirrorRemoteAddress $.Context . $.Mirror.GetRemoteName}} | ||||||
| 				<div class="fork-flag">{{$.i18n.Tr "repo.mirror_from"}} <a target="_blank" rel="noopener noreferrer" href="{{$address.Address}}">{{$address.Address}}</a></div>{{end}} | 					<div class="fork-flag">{{$.i18n.Tr "repo.mirror_from"}} <a target="_blank" rel="noopener noreferrer" href="{{$address.Address}}">{{$address.Address}}</a></div> | ||||||
|  | 				{{end}} | ||||||
| 				{{if .IsFork}}<div class="fork-flag">{{$.i18n.Tr "repo.forked_from"}} <a href="{{.BaseRepo.Link}}">{{.BaseRepo.FullName}}</a></div>{{end}} | 				{{if .IsFork}}<div class="fork-flag">{{$.i18n.Tr "repo.forked_from"}} <a href="{{.BaseRepo.Link}}">{{.BaseRepo.FullName}}</a></div>{{end}} | ||||||
| 				{{if .IsGenerated}}<div class="fork-flag">{{$.i18n.Tr "repo.generated_from"}} <a href="{{.TemplateRepo.Link}}">{{.TemplateRepo.FullName}}</a></div>{{end}} | 				{{if .IsGenerated}}<div class="fork-flag">{{$.i18n.Tr "repo.generated_from"}} <a href="{{.TemplateRepo.Link}}">{{.TemplateRepo.FullName}}</a></div>{{end}} | ||||||
| 			</div> | 			</div> | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user