2016-12-29 02:44:32 +03:00
{{ template "base/head" . }}
2023-02-02 01:56:10 +03:00
< div role = "main" aria-label = " {{ .Title }} " class = "page-content repository commits" >
2016-12-29 02:44:32 +03:00
{{ template "repo/header" . }}
< div class = "ui container" >
2020-08-06 11:04:08 +03:00
< div id = "git-graph-container" class = "ui segment {{ if eq .Mode "monochrome" }} monochrome {{ end }} " >
2020-11-08 20:21:54 +03:00
< h2 class = "ui header dividing" >
2023-09-25 11:56:50 +03:00
{{ ctx .Locale.Tr "repo.commit_graph" }}
2020-11-08 20:21:54 +03:00
< div class = "ui icon buttons tiny color-buttons" >
< div class = "ui multiple selection search dropdown" id = "flow-select-refs-dropdown" >
< input type = "hidden" name = "flow" >
2023-09-25 11:56:50 +03:00
< div class = "default text" > {{ ctx .Locale.Tr "repo.commit_graph.select" }} </ div >
2020-11-08 20:21:54 +03:00
< div class = "menu" >
< div class = "item" data-value = "...flow-hide-pr-refs" >
< span class = "truncate" >
2023-09-25 15:42:40 +03:00
{{ svg "octicon-eye-closed" 16 "gt-mr-2" }} < span title = " {{ ctx .Locale.Tr "repo.commit_graph.hide_pr_refs" }} " > {{ ctx .Locale.Tr "repo.commit_graph.hide_pr_refs" }} </ span >
2020-11-08 20:21:54 +03:00
< / span >
< / div >
{{ range .AllRefs }}
{{ $refGroup := .RefGroup }}
{{ if eq $refGroup "pull" }}
< div class = "item" data-value = " {{ .Name }} " >
< span class = "truncate" >
2023-02-13 20:59:59 +03:00
{{ svg "octicon-git-pull-request" 16 "gt-mr-2" }} < span title = " {{ .ShortName }} " > #{{ .ShortName }} </ span >
2020-11-08 20:21:54 +03:00
< / span >
< / div >
{{ else if eq $refGroup "tags" }}
< div class = "item" data-value = " {{ .Name }} " >
< span class = "truncate" >
2023-02-13 20:59:59 +03:00
{{ svg "octicon-tag" 16 "gt-mr-2" }} < span title = " {{ .ShortName }} " > {{ .ShortName }} </ span >
2020-11-08 20:21:54 +03:00
< / span >
< / div >
{{ else if eq $refGroup "remotes" }}
< div class = "item" data-value = " {{ .Name }} " >
< span class = "truncate" >
2023-02-13 20:59:59 +03:00
{{ svg "octicon-cross-reference" 16 "gt-mr-2" }} < span title = " {{ .ShortName }} " > {{ .ShortName }} </ span >
2020-11-08 20:21:54 +03:00
< / span >
< / div >
{{ else if eq $refGroup "heads" }}
< div class = "item" data-value = " {{ .Name }} " >
< span class = "truncate" >
2023-02-13 20:59:59 +03:00
{{ svg "octicon-git-branch" 16 "gt-mr-2" }} < span title = " {{ .ShortName }} " > {{ .ShortName }} </ span >
2020-11-08 20:21:54 +03:00
< / span >
< / div >
{{ end }}
{{ end }}
< / div >
2020-08-06 11:04:08 +03:00
< / div >
2023-09-25 15:42:40 +03:00
< button id = "flow-color-monochrome" class = "ui labelled icon button {{ if eq .Mode "monochrome" }} active {{ end }} " title = " {{ ctx .Locale.Tr "repo.commit_graph.monochrome" }} " > {{ svg "material-invert-colors" 16 "gt-mr-2" }}{{ ctx .Locale.Tr "repo.commit_graph.monochrome" }} </ button >
< button id = "flow-color-colored" class = "ui labelled icon button {{ if ne .Mode "monochrome" }} active {{ end }} " title = " {{ ctx .Locale.Tr "repo.commit_graph.color" }} " > {{ svg "material-palette" 16 "gt-mr-2" }}{{ ctx .Locale.Tr "repo.commit_graph.color" }} </ button >
2020-08-06 11:04:08 +03:00
< / div >
< / h2 >
< div class = "ui dividing" > < / div >
2024-03-21 19:31:15 +03:00
< div class = "is-loading tw-py-32 gt-hidden" id = "loading-indicator" > < / div >
2022-08-26 00:55:52 +03:00
{{ template "repo/graph/svgcontainer" . }}
{{ template "repo/graph/commits" . }}
2020-06-20 22:29:44 +03:00
< / div >
2016-12-29 02:44:32 +03:00
< / div >
< / div >
2020-11-08 20:21:54 +03:00
< div id = "pagination" >
{{ template "base/paginate" . }}
< / div >
2016-12-29 02:44:32 +03:00
{{ template "base/footer" . }}