1
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2024-10-07 15:53:17 +00:00
forgejo/templates/user/publickey_list.tmpl

12 lines
275 B
Cheetah
Raw Normal View History

2014-03-07 03:34:41 +00:00
{{template "base/head" .}}
{{template "base/navbar" .}}
<div class="container" id="gogs-body">
<div><a href="/user/publickey/add">Add publick key</a></div>
<ul>
{{range .Keys}}
<li>{{.Name}}</li>
<li>{{.Content}}</li>
{{end}}
</ul>
</div>
{{template "base/footer" .}}