1
0
Fork 0

Fixes following external fedireads user

Fixes #42
This commit is contained in:
Mouse Reeve 2020-02-19 11:33:00 -08:00
parent bf58e29a54
commit f7867da7a0
7 changed files with 29 additions and 30 deletions

View file

@ -4,9 +4,8 @@
{% for result in results %}
<div>
<h2>{{ result.username }}</h2>
<form action="/follow/" method="post">
<form action="/follow/{{ result.username }}" method="post">
{% csrf_token %}
<input type="hidden" name="user" value="{{ result.id }}"></input>
<input type="submit" value="Follow"></input>
</form>
</div>