This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / appview / pages / templates / fragments / editRepoDescription.html
415 B 9 lines
1{{ define "fragments/editRepoDescription" }} 2<form hx-put="/{{ .RepoInfo.FullName }}/description" hx-target="this" hx-swap="outerHTML"> 3 <input type="text" name="description" value="{{ .RepoInfo.Description }}" class="input"> 4 <button type="submit" class="btn">save</button> 5 <button type="button" class="btn" hx-get="/{{ .RepoInfo.FullName }}/description" > 6 cancel 7 </button> 8</form> 9{{ end }}