this repo has no description
1{{ define "repoContent" }} 2 <h3>settings</h3> 3 <em>collaborators</em> 4 <ol> 5 {{ range .Collaborators }} 6 <li> 7 {{ index . 0 }} - {{ index . 3 }} 8 </li> 9 {{ else }} 10 <p>no members</p> 11 {{ end }} 12 </ol> 13 14 {{ if .IsCollaboratorInviteAllowed }} 15 <h3>add collaborator</h3> 16 <form hx-put="/{{ $.RepoInfo.FullName }}/settings/collaborator"> 17 <label for="collaborator">did or handle:</label> 18 <input type="text" id="collaborator" name="collaborator" required> 19 <button type="text">add collaborator</button> 20 </form> 21 {{ end }} 22{{end}} 23