2016-08-30 17:37:50 +05:30
|
|
|
{{template "base/head" .}}
|
2020-12-01 09:30:14 +05:30
|
|
|
<div class="page-content repository file editor upload">
|
2016-08-30 17:37:50 +05:30
|
|
|
{{template "repo/header" .}}
|
|
|
|
<div class="ui container">
|
|
|
|
{{template "base/alert" .}}
|
|
|
|
<form class="ui comment form" method="post">
|
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<div class="ui secondary menu">
|
|
|
|
<div class="item fitted treepath">
|
|
|
|
<div class="ui breadcrumb field {{if .Err_TreePath}}error{{end}}">
|
2021-11-16 23:48:25 +05:30
|
|
|
<a class="section" href="{{$.BranchLink}}">{{.Repository.Name}}</a>
|
2016-08-30 17:37:50 +05:30
|
|
|
{{ $n := len .TreeNames}}
|
|
|
|
{{ $l := Subtract $n 1}}
|
|
|
|
{{range $i, $v := .TreeNames}}
|
|
|
|
<div class="divider"> / </div>
|
|
|
|
{{if eq $i $l}}
|
|
|
|
<input type="text" id="file-name" value="{{$v}}" placeholder="{{$.i18n.Tr "repo.editor.add_subdir"}}" autofocus>
|
2021-11-18 08:56:50 +05:30
|
|
|
<span class="tooltip" data-content="{{$.i18n.Tr "repo.editor.filename_help"}}" data-position="bottom center">{{svg "octicon-info"}}</span>
|
2016-08-30 17:37:50 +05:30
|
|
|
{{else}}
|
2021-11-16 23:48:25 +05:30
|
|
|
<span class="section"><a href="{{$.BranchLink}}/{{index $.TreePaths $i | PathEscapeSegments}}">{{$v}}</a></span>
|
2016-08-30 17:37:50 +05:30
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2021-11-16 23:48:25 +05:30
|
|
|
<span>{{.i18n.Tr "repo.editor.or"}} <a href="{{$.BranchLink}}{{if not .IsNewFile}}/{{.TreePath | PathEscapeSegments}}{{end}}">{{.i18n.Tr "repo.editor.cancel_lower"}}</a></span>
|
2016-08-30 17:37:50 +05:30
|
|
|
<input type="hidden" id="tree_path" name="tree_path" value="{{.TreePath}}" required>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="field">
|
2020-10-05 11:19:33 +05:30
|
|
|
{{template "repo/upload" .}}
|
2016-08-30 17:37:50 +05:30
|
|
|
</div>
|
|
|
|
{{template "repo/editor/commit_form" .}}
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|