diff options
author | Unknwon <u@gogs.io> | 2016-08-28 04:31:42 -0700 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2016-08-28 04:31:42 -0700 |
commit | ba27d71abea437af2f0612a8960eea651ec2df59 (patch) | |
tree | 2e0d34def64d5eb4c91aebf5e9b6a8003138193b /templates/repo/diff.tmpl | |
parent | 7115e3a4d578ec024f9acbc043e38326bff4117e (diff) | |
download | gitea-ba27d71abea437af2f0612a8960eea651ec2df59.tar.gz gitea-ba27d71abea437af2f0612a8960eea651ec2df59.zip |
Web editor: improve edit file
Diffstat (limited to 'templates/repo/diff.tmpl')
-rw-r--r-- | templates/repo/diff.tmpl | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/templates/repo/diff.tmpl b/templates/repo/diff.tmpl deleted file mode 100644 index e9f12ab932..0000000000 --- a/templates/repo/diff.tmpl +++ /dev/null @@ -1,45 +0,0 @@ -{{template "base/head" .}} -<div class="repository diff"> - {{template "repo/header" .}} - <div class="ui container {{if .IsSplitStyle}}fluid padded{{end}}"> - {{if .IsDiffCompare }} - {{template "repo/commits_table" .}} - {{else}} - <div class="ui top attached info clearing segment"> - <a class="ui floated right blue tiny button" href="{{EscapePound .SourcePath}}"> - {{.i18n.Tr "repo.diff.browse_source"}} - </a> - {{RenderCommitMessage true .Commit.Message $.RepoLink $.Repository.ComposeMetas}} - </div> - <div class="ui attached info segment"> - {{if .Author}} - <img class="ui avatar image" src="{{.Author.RelAvatarLink}}" /> - <a href="{{.Author.HomeLink}}"><strong>{{.Commit.Author.Name}}</strong></a> {{if .IsSigned}}<{{.Commit.Author.Email}}>{{end}} - {{else}} - <img class="ui avatar image" src="{{AvatarLink .Commit.Author.Email}}" /> - <strong>{{.Commit.Author.Name}}</strong> - {{end}} - <span class="text grey" id="authored-time">{{TimeSince .Commit.Author.When $.Lang}}</span> - <div class="ui right"> - <div class="ui horizontal list"> - {{if .Parents}} - <div class="item"> - {{.i18n.Tr "repo.diff.parent"}} - </div> - <div class="item"> - {{range .Parents}} - <a class="ui blue sha label" href="{{$.RepoLink}}/commit/{{.}}">{{ShortSha .}}</a> - {{end}} - </div> - {{end}} - <div class="item">{{.i18n.Tr "repo.diff.commit"}}</div> - <div class="item"><span class="ui blue sha label">{{ShortSha .CommitID}}</span></div> - </div> - </div> - </div> - {{end}} - - {{template "repo/diff_box" .}} - </div> -</div> -{{template "base/footer" .}} |