2020-06-15 18:39:39 +00:00
|
|
|
<div class="{{TabSizeClass .Editorconfig .FileName}} non-diff-file-content">
|
2020-11-01 20:04:26 +00:00
|
|
|
<h4 class="file-header ui top attached header df ac sb">
|
|
|
|
<div class="file-header-left df ac">
|
2020-06-15 18:39:39 +00:00
|
|
|
<div class="file-info text grey normal mono">
|
|
|
|
<div class="file-info-entry">
|
|
|
|
{{.NumLines}} {{.i18n.Tr (TrN .i18n.Lang .NumLines "repo.line" "repo.lines") }}
|
|
|
|
</div>
|
|
|
|
<div class="file-info-entry">{{FileSize .FileSize}}</div>
|
2019-04-20 02:47:00 +00:00
|
|
|
</div>
|
2020-06-15 18:39:39 +00:00
|
|
|
</div>
|
2020-11-01 20:04:26 +00:00
|
|
|
<div class="file-header-right file-actions df ac">
|
|
|
|
<div class="ui buttons">
|
|
|
|
<a class="ui tiny button" href="{{EscapePound $.RawFileLink}}">{{.i18n.Tr "repo.file_raw"}}</a>
|
|
|
|
{{if not .IsViewCommit}}
|
|
|
|
<a class="ui tiny button" href="{{.RepoLink}}/src/commit/{{.CommitID}}/{{EscapePound .TreePath}}">{{.i18n.Tr "repo.file_permalink"}}</a>
|
|
|
|
{{end}}
|
|
|
|
<a class="ui tiny button" href="{{.RepoLink}}/src/{{EscapePound .BranchNameSubURL}}/{{EscapePound .TreePath}}">{{.i18n.Tr "repo.normal_view"}}</a>
|
|
|
|
<a class="ui tiny button" href="{{.RepoLink}}/commits/{{EscapePound .BranchNameSubURL}}/{{EscapePound .TreePath}}">{{.i18n.Tr "repo.file_history"}}</a>
|
2019-04-20 02:47:00 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</h4>
|
2021-04-11 03:46:37 +00:00
|
|
|
<div class="ui attached table unstackable segment">
|
2020-06-15 18:39:39 +00:00
|
|
|
<div class="file-view code-view">
|
|
|
|
<table>
|
|
|
|
<tbody>
|
2021-06-27 23:13:20 +00:00
|
|
|
{{range $row := .BlameRows}}
|
|
|
|
<tr class="{{if and (gt $.CommitCnt 1) ($row.CommitMessage)}}top-line-blame{{end}}">
|
|
|
|
<td class="lines-commit">
|
|
|
|
<div class="blame-info">
|
|
|
|
<div class="blame-data">
|
|
|
|
<div class="blame-avatar">
|
|
|
|
{{$row.Avatar}}
|
|
|
|
</div>
|
|
|
|
<div class="blame-message">
|
|
|
|
<a href="{{$row.CommitURL}}" title="{{$row.CommitMessage}}">
|
|
|
|
{{$row.CommitMessage}}
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="blame-time">
|
|
|
|
{{$row.CommitSince}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
<td class="lines-blame-btn">
|
|
|
|
{{if $row.PreviousSha}}
|
|
|
|
<a href="{{$row.PreviousShaURL}}" class="poping up" data-content='{{$.i18n.Tr "repo.blame_prior"}}' data-variation="tiny inverted">
|
|
|
|
{{svg "octicon-versions"}}
|
|
|
|
</a>
|
|
|
|
{{end}}
|
|
|
|
</td>
|
|
|
|
<td class="lines-num">
|
|
|
|
<span id="L{{$row.RowNumber}}" data-line-number="{{$row.RowNumber}}"></span>
|
|
|
|
</td>
|
|
|
|
<td rel="L{{$row.RowNumber}}" rel="L{{$row.RowNumber}}" class="lines-code blame-code chroma">
|
|
|
|
<code class="code-inner pl-3">{{$row.Code}}</code>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{{end}}
|
2020-06-15 18:39:39 +00:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2021-04-11 03:46:37 +00:00
|
|
|
</div>
|
2019-07-23 02:12:09 +00:00
|
|
|
</div>
|