go.charczuk.com@v0.0.0-20240327042549-bc490516bd1a/projects/chirp/pkg/static/_views/control_follow.html (about) 1 <!-- 2 Copyright (c) 2023 - Present. Will Charczuk. All rights reserved. 3 Use of this source code is governed by a MIT license that can be found in the LICENSE file at the root of the repository. 4 --> 5 {{ define "control_follow" }} 6 {{ if .IsSelf | not }} 7 {{ if .IsFollowing }} 8 <form method="POST" action="/profile.unfollow"> 9 <input type="hidden" name="id" value="{{ .UserID }}"/> 10 <button type="submit" class="bp3-button bp3-minimal bp3-intent-secondary bp3-icon-blocked-person">{{ localize "Unfollow" }}</button> 11 </form> 12 {{ else }} 13 <form method="POST" action="/profile.follow"> 14 <input type="hidden" name="id" value="{{ .UserID }}"/> 15 <button type="submit" class="bp3-button bp3-minimal bp3-intent-primary bp3-icon-new-person">{{ localize "Follow" }}</button> 16 </form> 17 {{ end }} 18 {{ end }} 19 {{ end }}