2017-10-26 06:19:16 +05:30
|
|
|
{{template "base/head" .}}
|
|
|
|
<div class="ui repository branches">
|
|
|
|
{{template "repo/header" .}}
|
|
|
|
<div class="ui container">
|
|
|
|
{{template "base/alert" .}}
|
|
|
|
{{template "repo/sub_menu" .}}
|
|
|
|
<h4 class="ui top attached header">
|
|
|
|
{{.i18n.Tr "repo.default_branch"}}
|
|
|
|
</h4>
|
|
|
|
|
|
|
|
<div class="ui attached table segment">
|
|
|
|
<table class="ui very basic striped fixed table single line">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>{{.DefaultBranch}}</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{if gt (len .Branches) 1}}
|
|
|
|
<h4 class="ui top attached header">
|
|
|
|
{{.i18n.Tr "repo.branches"}}
|
|
|
|
</h4>
|
|
|
|
<div class="ui attached table segment">
|
|
|
|
<table class="ui very basic striped fixed table single line">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th class="nine wide">{{.i18n.Tr "repo.branch.name"}}</th>
|
|
|
|
{{if and $.IsWriter (not $.IsMirror)}}
|
|
|
|
<th class="one wide right aligned">{{.i18n.Tr "repo.branch.delete_head"}}</th>
|
|
|
|
{{end}}
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{{range $branch := .Branches}}
|
|
|
|
{{if ne .Name $.DefaultBranch}}
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
{{if .IsDeleted}}
|
2018-02-25 02:47:59 +05:30
|
|
|
<s><a href="{{$.RepoLink}}/src/branch/{{.Name}}">{{.Name}}</a></s>
|
2017-12-11 10:07:04 +05:30
|
|
|
<p class="time">{{$.i18n.Tr "repo.branch.deleted_by" .DeletedBranch.DeletedBy.Name}} {{TimeSinceUnix .DeletedBranch.DeletedUnix $.i18n.Lang}}</p>
|
2017-10-26 06:19:16 +05:30
|
|
|
{{else}}
|
2018-02-25 02:47:59 +05:30
|
|
|
<a href="{{$.RepoLink}}/src/branch/{{.Name}}">{{.Name}}</a>
|
2017-10-26 06:19:16 +05:30
|
|
|
<p class="time">{{$.i18n.Tr "org.repo_updated"}} {{TimeSince .Commit.Committer.When $.i18n.Lang}}</p>
|
|
|
|
</td>
|
|
|
|
{{end}}
|
|
|
|
{{if and $.IsWriter (not $.IsMirror)}}
|
|
|
|
<td class="right aligned">
|
|
|
|
{{if .IsProtected}}
|
|
|
|
<i class="octicon octicon-shield"></i>
|
|
|
|
{{else if .IsDeleted}}
|
|
|
|
<a class="undo-button" href data-url="{{$.Link}}/restore?branch_id={{.DeletedBranch.ID | urlquery}}&name={{.DeletedBranch.Name | urlquery}}"><i class="octicon octicon-reply"></i></a>
|
|
|
|
{{else}}
|
|
|
|
<a class="delete-branch-button" href data-url="{{$.Link}}/delete?name={{.Name | urlquery}}" data-val="{{.Name}}"><i class="trash icon text red"></i></a>
|
|
|
|
{{end}}
|
|
|
|
</td>
|
|
|
|
{{end}}
|
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="ui small basic delete modal">
|
|
|
|
<div class="ui icon header">
|
|
|
|
<i class="trash icon"></i>
|
2018-04-10 09:13:37 +05:30
|
|
|
{{.i18n.Tr "repo.branch.delete_html"}} <span class="branch-name"></span>
|
2017-10-26 06:19:16 +05:30
|
|
|
</div>
|
|
|
|
<div class="content">
|
2018-04-10 09:13:37 +05:30
|
|
|
<p>{{.i18n.Tr "repo.branch.delete_desc"}}</p>
|
2017-10-26 06:19:16 +05:30
|
|
|
</div>
|
|
|
|
{{template "base/delete_modal_actions" .}}
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|