this repo has no description
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 }}