mirror of https://github.com/gogits/gogs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.6 KiB
41 lines
1.6 KiB
{{if .DiffNotAvailable}} |
|
<h4>{{.i18n.Tr "repo.diff.data_not_available"}}</h4> |
|
{{else}} |
|
<div class="diff-detail-box diff-box"> |
|
<div> |
|
<i class="fa fa-retweet"></i> |
|
{{.i18n.Tr "repo.diff.stats_desc" .Diff.NumFiles .Diff.TotalAddition .Diff.TotalDeletion | Str2html}} |
|
<div class="ui right"> |
|
<a class="ui tiny basic toggle button" href="?style={{if .Style}}inline{{else}}split{{end}}">{{ if .Style }}{{.i18n.Tr "repo.diff.show_inline_view"}}{{else}}{{.i18n.Tr "repo.diff.show_split_view"}}{{end}}</a> |
|
<a class="ui tiny basic toggle button" data-target="#diff-files">{{.i18n.Tr "repo.diff.show_diff_stats"}}</a> |
|
</div> |
|
</div> |
|
<ol class="detail-files hide" id="diff-files"> |
|
{{range .Diff.Files}} |
|
<li> |
|
<div class="diff-counter count pull-right"> |
|
{{if not .IsBin}} |
|
<span class="add" data-line="{{.Addition}}">{{.Addition}}</span> |
|
<span class="bar"> |
|
<span class="pull-left add"></span> |
|
<span class="pull-left del"></span> |
|
</span> |
|
<span class="del" data-line="{{.Deletion}}">{{.Deletion}}</span> |
|
{{else}} |
|
<span>{{$.i18n.Tr "repo.diff.bin"}}</span> |
|
{{end}} |
|
</div> |
|
<!-- todo finish all file status, now modify, add, delete and rename --> |
|
<span class="status {{DiffTypeToStr .Type}} poping up" data-content="{{DiffTypeToStr .Type}}" data-variation="inverted tiny" data-position="right center"> </span> |
|
<a class="file" href="#diff-{{.Index}}">{{.Name}}</a> |
|
</li> |
|
{{end}} |
|
</ol> |
|
</div> |
|
|
|
{{if .Style}} |
|
{{ template "repo/diff_box_split" . }} |
|
{{else}} |
|
{{ template "repo/diff_box_inline" . }} |
|
{{end}} |
|
{{end}}
|
|
|