summaryrefslogtreecommitdiffstats
path: root/templates/repo/commit_load_branches_and_tags.tmpl
blob: ffa0e530e8cb5cc0894343c9cdc12f0e7c43c297 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{{if not .PageIsWiki}}
<div class="branch-and-tag-area" data-text-default-branch-tooltip="{{ctx.Locale.Tr "repo.commit.contained_in_default_branch"}}">
	<button class="ui button ellipsis-button load-branches-and-tags tw-mt-2" aria-expanded="false"
		data-fetch-url="{{.RepoLink}}/commit/{{.CommitID}}/load-branches-and-tags"
		data-tooltip-content="{{ctx.Locale.Tr "repo.commit.load_referencing_branches_and_tags"}}"
	>...</button>
	<div class="branch-and-tag-detail tw-hidden">
		<div class="divider"></div>
		<div>{{ctx.Locale.Tr "repo.commit.contained_in"}}</div>
		<div class="tw-flex tw-mt-2">
			<div class="tw-p-1">{{svg "octicon-git-branch"}}</div>
			<div class="branch-area flex-text-block tw-flex-wrap tw-flex-1"></div>
		</div>
		<div class="tw-flex tw-mt-2">
			<div class="tw-p-1">{{svg "octicon-tag"}}</div>
			<div class="tag-area flex-text-block tw-flex-wrap tw-flex-1"></div>
		</div>
	</div>
</div>
{{end}}