summaryrefslogtreecommitdiffstats
path: root/templates/repo/issue/view_content/sidebar.tmpl
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-10-11 10:27:00 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-10-11 10:27:00 +0000
commit65aa53fc52ff15efe54df4147564828d535837f8 (patch)
tree31c51dad04fdcca80e6d3043c8bd49d2f1a51f83 /templates/repo/issue/view_content/sidebar.tmpl
parentInitial commit. (diff)
downloadforgejo-debian.tar.xz
forgejo-debian.zip
Adding upstream version 8.0.3.HEADupstream/8.0.3upstreamdebian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'templates/repo/issue/view_content/sidebar.tmpl')
-rw-r--r--templates/repo/issue/view_content/sidebar.tmpl66
1 files changed, 66 insertions, 0 deletions
diff --git a/templates/repo/issue/view_content/sidebar.tmpl b/templates/repo/issue/view_content/sidebar.tmpl
new file mode 100644
index 00000000..ba155398
--- /dev/null
+++ b/templates/repo/issue/view_content/sidebar.tmpl
@@ -0,0 +1,66 @@
+<div class="issue-content-right ui segment">
+ {{template "repo/issue/view_content/sidebar/branch_selector_field" .}}
+ {{if .Issue.IsPull}}
+ {{template "repo/issue/view_content/sidebar/pull_review" .}}
+ {{template "repo/issue/view_content/sidebar/pull_wip" .}}
+ <div class="divider"></div>
+ {{end}}
+
+ {{template "repo/issue/labels/labels_selector_field" .}}
+ {{template "repo/issue/labels/labels_sidebar" dict "root" $}}
+
+ <div class="divider"></div>
+
+ {{template "repo/issue/view_content/sidebar/milestones" .}}
+ <div class="divider"></div>
+
+ {{template "repo/issue/view_content/sidebar/projects" .}}
+ <div class="divider"></div>
+
+ {{template "repo/issue/view_content/sidebar/assignees" .}}
+ <div class="divider"></div>
+
+ {{if .Participants}}
+ {{template "repo/issue/view_content/sidebar/participants" .}}
+ {{end}}
+
+ {{if and $.IssueWatch (not .Repository.IsArchived)}}
+ <div class="divider"></div>
+
+ {{template "repo/issue/view_content/sidebar/watch" .}}
+ {{end}}
+
+ {{if .Repository.IsTimetrackerEnabled $.Context}}
+ {{template "repo/issue/view_content/sidebar/timetracking" .}}
+ {{end}}
+
+ <div class="divider"></div>
+ {{template "repo/issue/view_content/sidebar/due_deadline" .}}
+
+ {{if .Repository.IsDependenciesEnabled $.Context}}
+ <div class="divider"></div>
+
+ {{template "repo/issue/view_content/sidebar/dependencies" .}}
+ {{end}}
+
+ <div class="divider"></div>
+ {{template "repo/issue/view_content/sidebar/reference" .}}
+
+ {{if and .IsRepoAdmin (not .Repository.IsArchived)}}
+ <div class="divider"></div>
+
+ {{template "repo/issue/view_content/sidebar/actions" .}}
+ {{end}}
+
+ {{if and
+ .Issue.IsPull
+ .IsIssuePoster
+ (not .Issue.IsClosed)
+ .Issue.PullRequest.HeadRepo
+ (not (eq .Issue.PullRequest.HeadRepo.FullName .Issue.PullRequest.BaseRepo.FullName))
+ .CanWriteToHeadRepo
+ }}
+ <div class="divider"></div>
+ {{template "repo/issue/view_content/sidebar/pull_maintainer_edits" .}}
+ {{end}}
+</div>