summaryrefslogtreecommitdiffstats
path: root/templates/repo/settings/deploy_keys.tmpl
blob: 584a6ee1a6c16e0cf0d21f7627b1d9fc3678321c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{{template "repo/settings/layout_head" (dict "ctxData" . "pageClass" "repository settings")}}
	<div class="repo-setting-content">
		<h4 class="ui top attached header">
			{{.locale.Tr "repo.settings.deploy_keys"}}
			<div class="ui right">
			{{if not .DisableSSH}}
				<button class="ui primary tiny show-panel button" data-panel="#add-deploy-key-panel">{{.locale.Tr "repo.settings.add_deploy_key"}}</button>
			{{else}}
				<button class="ui primary tiny button disabled">{{.locale.Tr "settings.ssh_disabled"}}</button>
			{{end}}
			</div>
		</h4>
		<div class="ui attached segment">
			<div class="{{if not .HasError}}gt-hidden{{end}} gt-mb-4" id="add-deploy-key-panel">
				<form class="ui form" action="{{.Link}}" method="post">
					{{.CsrfTokenHtml}}
					<div class="field">
						{{.locale.Tr "repo.settings.deploy_key_desc"}}
					</div>
					<div class="field {{if .Err_Title}}error{{end}}">
						<label for="title">{{.locale.Tr "repo.settings.title"}}</label>
						<input id="ssh-key-title" name="title" value="{{.title}}" autofocus required>
					</div>
					<div class="field {{if .Err_Content}}error{{end}}">
						<label for="content">{{.locale.Tr "repo.settings.deploy_key_content"}}</label>
						<textarea id="ssh-key-content" name="content" placeholder="{{.locale.Tr "settings.key_content_ssh_placeholder"}}" required>{{.content}}</textarea>
					</div>
					<div class="field">
						<div class="ui checkbox {{if .Err_IsWritable}}error{{end}}">
							<input id="ssh-key-is-writable" name="is_writable" type="checkbox" value="1">
							<label for="is_writable">
								{{.locale.Tr "repo.settings.is_writable"}}
							</label>
							<small style="padding-left: 26px;">{{$.locale.Tr "repo.settings.is_writable_info" | Str2html}}</small>
						</div>
					</div>
					<button class="ui green button">
						{{.locale.Tr "repo.settings.add_deploy_key"}}
					</button>
					<button class="ui hide-panel button" data-panel="#add-deploy-key-panel">
						{{.locale.Tr "cancel"}}
					</button>
				</form>
			</div>
			{{if .Deploykeys}}
				<div class="ui key list">
					{{range .Deploykeys}}
						<div class="item">
							<div class="right floated content">
								<button class="ui red tiny button delete-button" data-url="{{$.Link}}/delete" data-id="{{.ID}}">
									{{$.locale.Tr "settings.delete_key"}}
								</button>
							</div>
							<div class="left floated content">
								<i class="text {{if .HasRecentActivity}}green{{end}}" {{if .HasRecentActivity}}data-tooltip-content="{{$.locale.Tr "settings.key_state_desc"}}"{{end}}>{{svg "octicon-key" 32}}</i>
							</div>
							<div class="content">
								<strong>{{.Name}}</strong>
								<div class="print meta">
									{{.Fingerprint}}
								</div>
								<div class="activity meta">
									<i>{{$.locale.Tr "settings.add_on"}} <span>{{DateTime "short" .CreatedUnix.FormatLong .CreatedUnix.FormatShort}}</span> —  {{svg "octicon-info"}} {{if .HasUsed}}{{$.locale.Tr "settings.last_used"}} <span {{if .HasRecentActivity}}class="green"{{end}}>{{DateTime "short" .UpdatedUnix.FormatLong .UpdatedUnix.FormatShort}}</span>{{else}}{{$.locale.Tr "settings.no_activity"}}{{end}} - <span>{{$.locale.Tr "settings.can_read_info"}}{{if not .IsReadOnly}} / {{$.locale.Tr "settings.can_write_info"}} {{end}}</span></i>
								</div>
							</div>
						</div>
					{{end}}
				</div>
			{{else}}
				{{.locale.Tr "repo.settings.no_deploy_keys"}}
			{{end}}
		</div>
	</div>

<div class="ui gitea-confirm-modal delete modal">
	<div class="header">
		{{svg "octicon-trash"}}
		{{.locale.Tr "repo.settings.deploy_key_deletion"}}
	</div>
	<div class="content">
		<p>{{.locale.Tr "repo.settings.deploy_key_deletion_desc"}}</p>
	</div>
	{{template "base/modal_actions_confirm" .}}
</div>

{{template "repo/settings/layout_footer" .}}