|
|
|
@ -6,7 +6,7 @@
|
|
|
|
|
{{if .IsDiffCompare }} |
|
|
|
|
<div class="panel panel-info panel-radius compare-head-box"> |
|
|
|
|
<div class="panel-header"> |
|
|
|
|
<a class="pull-right btn btn-blue btn-header btn-medium btn-radius" rel="nofollow" href="{{.SourcePath}}">{{.i18n.Tr "repo.diff.browse_source"}}</a> |
|
|
|
|
<a class="pull-right btn btn-blue btn-header btn-medium btn-radius" rel="nofollow" href="{{EscapePound .SourcePath}}">{{.i18n.Tr "repo.diff.browse_source"}}</a> |
|
|
|
|
<h4><a href="{{$.RepoLink}}/commit/{{.BeforeCommitId}}" class="label label-green">{{ShortSha .BeforeCommitId}}</a> ... <a href="{{$.RepoLink}}/commit/{{.AfterCommitId}}" class="label label-green">{{ShortSha .AfterCommitId}}</a></h4> |
|
|
|
|
</div> |
|
|
|
|
<div class="panel-body compare"> |
|
|
|
@ -16,7 +16,7 @@
|
|
|
|
|
{{else}} |
|
|
|
|
<div class="panel panel-info panel-radius diff-head-box"> |
|
|
|
|
<div class="panel-header"> |
|
|
|
|
<a class="pull-right btn btn-blue btn-header btn-medium btn-radius" rel="nofollow" href="{{.SourcePath}}">{{.i18n.Tr "repo.diff.browse_source"}}</a> |
|
|
|
|
<a class="pull-right btn btn-blue btn-header btn-medium btn-radius" rel="nofollow" href="{{EscapePound .SourcePath}}">{{.i18n.Tr "repo.diff.browse_source"}}</a> |
|
|
|
|
<h4 class="commit-message">{{RenderCommitMessage .Commit.Message $.RepoLink}}</h4> |
|
|
|
|
</div> |
|
|
|
|
<div class="panel-body"> |
|
|
|
@ -90,9 +90,9 @@
|
|
|
|
|
{{end}} |
|
|
|
|
</div> |
|
|
|
|
{{if $file.IsDeleted}} |
|
|
|
|
<a class="btn btn-gray btn-header btn-radius text-black pull-right" rel="nofollow" href="{{$.BeforeSourcePath}}/{{.Name}}">{{$.i18n.Tr "repo.diff.view_file"}}</a> |
|
|
|
|
<a class="btn btn-gray btn-header btn-radius text-black pull-right" rel="nofollow" href="{{EscapePound $.BeforeSourcePath}}/{{EscapePound .Name}}">{{$.i18n.Tr "repo.diff.view_file"}}</a> |
|
|
|
|
{{else}} |
|
|
|
|
<a class="btn btn-gray btn-header btn-radius text-black pull-right" rel="nofollow" href="{{$.SourcePath}}/{{.Name}}">{{$.i18n.Tr "repo.diff.view_file"}}</a> |
|
|
|
|
<a class="btn btn-gray btn-header btn-radius text-black pull-right" rel="nofollow" href="{{EscapePound $.SourcePath}}/{{EscapePound .Name}}">{{$.i18n.Tr "repo.diff.view_file"}}</a> |
|
|
|
|
{{end}} |
|
|
|
|
<span class="file">{{$file.Name}}</span> |
|
|
|
|
</div> |
|
|
|
@ -100,7 +100,7 @@
|
|
|
|
|
<div class="panel-body file-body file-code code-view code-diff"> |
|
|
|
|
{{if $isImage}} |
|
|
|
|
<div class="text-center"> |
|
|
|
|
<img src="{{$.RawPath}}/{{.Name}}"> |
|
|
|
|
<img src="{{$.RawPath}}/{{EscapePound .Name}}"> |
|
|
|
|
</div> |
|
|
|
|
{{else}} |
|
|
|
|
<table> |
|
|
|
|