diff options
author | Unknwon <u@gogs.io> | 2015-08-21 00:32:46 +0800 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-08-21 00:32:46 +0800 |
commit | 6821527c95032591684542fa201dfa800fbe7246 (patch) | |
tree | a90293cb195cc70111d424df0eb000f54b5ebc11 | |
parent | 4275b3720a04ccbca99907e800a55ab9df9fdcf6 (diff) | |
download | gitea-6821527c95032591684542fa201dfa800fbe7246.tar.gz gitea-6821527c95032591684542fa201dfa800fbe7246.zip |
fix style
-rw-r--r-- | templates/repo/commits_table.tmpl | 2 | ||||
-rw-r--r-- | templates/repo/diff.tmpl | 8 |
2 files changed, 2 insertions, 8 deletions
diff --git a/templates/repo/commits_table.tmpl b/templates/repo/commits_table.tmpl index 5586e0632b..eefdf8c824 100644 --- a/templates/repo/commits_table.tmpl +++ b/templates/repo/commits_table.tmpl @@ -9,6 +9,8 @@ <button class="ui black tiny button" data-panel="#add-deploy-key-panel">{{.i18n.Tr "repo.commits.find"}}</button> </form> </div> + {{else if .IsDiffCompare}} + <a href="{{$.RepoLink}}/commit/{{.BeforeCommitId}}" class="ui green sha label">{{ShortSha .BeforeCommitId}}</a> ... <a href="{{$.RepoLink}}/commit/{{.AfterCommitId}}" class="ui green sha label">{{ShortSha .AfterCommitId}}</a> {{end}} </h4> <div class="ui attached table segment"> diff --git a/templates/repo/diff.tmpl b/templates/repo/diff.tmpl index ed3b32bcc6..8b10cc8808 100644 --- a/templates/repo/diff.tmpl +++ b/templates/repo/diff.tmpl @@ -3,14 +3,6 @@ {{template "repo/header" .}} <div class="ui container"> {{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="{{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"> - </div> - </div> {{template "repo/commits_table" .}} {{else}} <h4 class="ui top attached info header"> |