Skip to main content

max / makenotwork

406 B · 10 lines History Blame Raw
1 {% if is_following %}
2 <button class="btn-secondary follow-btn is-selected"
3 hx-delete="/api/follow/{{ target_type }}/{{ target_id }}"
4 hx-swap="outerHTML">Following ({{ follower_count }})</button>
5 {% else %}
6 <button class="btn-secondary follow-btn"
7 hx-post="/api/follow/{{ target_type }}/{{ target_id }}"
8 hx-swap="outerHTML">Follow ({{ follower_count }})</button>
9 {% endif %}
10