mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 07:44:25 +00:00
b1cf7f4df1
* Add class to page content to unify top margin Previously pages would individually set this margin but some didn't so content would stick to the header without any space. Resolve this by adding a new class that is added on all pages. The only place where we remove this margin again is on the pages with menu or wrapper in the header. * fix admin notices * fix team pages * fix loading segment on gitgraph for arc-green * fix last missing case Co-authored-by: techknowlogick <techknowlogick@gitea.io>
103 lines
3.9 KiB
Handlebars
103 lines
3.9 KiB
Handlebars
{{template "base/head" .}}
|
|
<div class="page-content repository settings">
|
|
{{template "repo/header" .}}
|
|
{{template "repo/settings/navbar" .}}
|
|
<div class="ui container">
|
|
{{template "base/alert" .}}
|
|
<h4 class="ui top attached header">
|
|
{{.i18n.Tr "repo.settings.deploy_keys"}}
|
|
<div class="ui right">
|
|
{{if not .DisableSSH}}
|
|
<div class="ui blue tiny show-panel button" data-panel="#add-deploy-key-panel">{{.i18n.Tr "repo.settings.add_deploy_key"}}</div>
|
|
{{else}}
|
|
<div class="ui blue tiny button disabled">{{.i18n.Tr "settings.ssh_disabled"}}</div>
|
|
{{end}}
|
|
</div>
|
|
</h4>
|
|
<div class="ui attached segment">
|
|
{{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}}">
|
|
{{$.i18n.Tr "settings.delete_key"}}
|
|
</button>
|
|
</div>
|
|
<div class="left floated content">
|
|
<i class="{{if .HasRecentActivity}}green{{end}}" {{if .HasRecentActivity}}data-content="{{$.i18n.Tr "settings.key_state_desc"}}" data-variation="inverted"{{end}}>{{svg "octicon-key" 32}}</i>
|
|
</div>
|
|
<div class="content">
|
|
<strong>{{.Name}}</strong>
|
|
<div class="print meta">
|
|
{{.Fingerprint}}
|
|
</div>
|
|
<div class="activity meta">
|
|
<i>{{$.i18n.Tr "settings.add_on"}} <span>{{.CreatedUnix.FormatShort}}</span> — {{svg "octicon-info"}} {{if .HasUsed}}{{$.i18n.Tr "settings.last_used"}} <span {{if .HasRecentActivity}}class="green"{{end}}>{{.UpdatedUnix.FormatShort}}</span>{{else}}{{$.i18n.Tr "settings.no_activity"}}{{end}} - <span>{{$.i18n.Tr "settings.can_read_info"}}{{if not .IsReadOnly}} / {{$.i18n.Tr "settings.can_write_info"}} {{end}}</span></i>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
{{else}}
|
|
{{.i18n.Tr "repo.settings.no_deploy_keys"}}
|
|
{{end}}
|
|
</div>
|
|
<br>
|
|
<div {{if not .HasError}}class="hide"{{end}} id="add-deploy-key-panel">
|
|
<h4 class="ui top attached header">
|
|
{{.i18n.Tr "repo.settings.add_deploy_key"}}
|
|
</h4>
|
|
<div class="ui attached segment">
|
|
<form class="ui form" action="{{.Link}}" method="post">
|
|
{{.CsrfTokenHtml}}
|
|
<div class="field">
|
|
{{.i18n.Tr "repo.settings.deploy_key_desc"}}
|
|
</div>
|
|
<div class="field {{if .Err_Title}}error{{end}}">
|
|
<label for="title">{{.i18n.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">{{.i18n.Tr "repo.settings.deploy_key_content"}}</label>
|
|
<textarea id="ssh-key-content" name="content" 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" class="hidden" type="checkbox" value="1">
|
|
<label for="is_writable">
|
|
{{.i18n.Tr "repo.settings.is_writable"}}
|
|
</label>
|
|
<small style="padding-left: 26px;">{{$.i18n.Tr "repo.settings.is_writable_info" | Str2html}}</small>
|
|
</div>
|
|
</div>
|
|
<button class="ui green button">
|
|
{{.i18n.Tr "repo.settings.add_deploy_key"}}
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="ui small basic delete modal">
|
|
<div class="ui icon header">
|
|
{{svg "octicon-trashcan"}}
|
|
{{.i18n.Tr "repo.settings.deploy_key_deletion"}}
|
|
</div>
|
|
<div class="content">
|
|
<p>{{.i18n.Tr "repo.settings.deploy_key_deletion_desc"}}</p>
|
|
</div>
|
|
<div class="actions">
|
|
<div class="ui red basic inverted cancel button">
|
|
<i class="remove icon"></i>
|
|
{{.i18n.Tr "modal.no"}}
|
|
</div>
|
|
<div class="ui green basic inverted ok button">
|
|
<i class="checkmark icon"></i>
|
|
{{.i18n.Tr "modal.yes"}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{template "base/footer" .}}
|