2016-08-30 14:07:50 +02:00
|
|
|
{{template "base/head" .}}
|
2020-12-01 05:00:14 +01:00
|
|
|
<div class="page-content repository file editor upload">
|
2016-08-30 14:07:50 +02:00
|
|
|
{{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 19:18:25 +01:00
|
|
|
<a class="section" href="{{$.BranchLink}}">{{.Repository.Name}}</a>
|
2022-08-31 17:58:54 +02:00
|
|
|
{{$n := len .TreeNames}}
|
|
|
|
{{$l := Subtract $n 1}}
|
2016-08-30 14:07:50 +02:00
|
|
|
{{range $i, $v := .TreeNames}}
|
|
|
|
<div class="divider"> / </div>
|
|
|
|
{{if eq $i $l}}
|
2022-06-27 22:58:46 +02:00
|
|
|
<input type="text" id="file-name" value="{{$v}}" placeholder="{{$.locale.Tr "repo.editor.add_subdir"}}" autofocus>
|
|
|
|
<span class="tooltip" data-content="{{$.locale.Tr "repo.editor.filename_help"}}" data-position="bottom center">{{svg "octicon-info"}}</span>
|
2016-08-30 14:07:50 +02:00
|
|
|
{{else}}
|
2021-11-16 19:18:25 +01:00
|
|
|
<span class="section"><a href="{{$.BranchLink}}/{{index $.TreePaths $i | PathEscapeSegments}}">{{$v}}</a></span>
|
2016-08-30 14:07:50 +02:00
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2022-06-27 22:58:46 +02:00
|
|
|
<span>{{.locale.Tr "repo.editor.or"}} <a href="{{$.BranchLink}}{{if not .IsNewFile}}/{{.TreePath | PathEscapeSegments}}{{end}}">{{.locale.Tr "repo.editor.cancel_lower"}}</a></span>
|
2016-08-30 14:07:50 +02:00
|
|
|
<input type="hidden" id="tree_path" name="tree_path" value="{{.TreePath}}" required>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="field">
|
2020-10-05 07:49:33 +02:00
|
|
|
{{template "repo/upload" .}}
|
2016-08-30 14:07:50 +02:00
|
|
|
</div>
|
|
|
|
{{template "repo/editor/commit_form" .}}
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|