2021-03-31 21:53:00 +00:00
{% extends 'get_started/layout.html' %}
{% load i18n %}
{% block panel %}
< div class = "block" >
< h2 class = "title is-4" > {% trans "Who to follow" %}< / h2 >
2021-04-01 16:30:15 +00:00
< p class = "subtitle is-6" > You can follow users on other BookWyrm instances and federated services like Mastodon.< / p >
< form class = "field has-addons" method = "get" action = "{% url 'get-started-users' %}" >
< div class = "control" >
< input type = "text" name = "query" value = "{{ request.GET.query }}" class = "input" placeholder = "{% trans 'Search for a user' %}" aria-label = "{% trans 'Search for a user' %}" >
2021-05-22 21:05:59 +00:00
{% if request.GET.query and no_results %}
2021-04-01 19:23:13 +00:00
< p class = "help" > {% blocktrans with query=request.GET.query %}No users found for "{{ query }}"{% endblocktrans %}< / p >
2021-04-01 16:30:15 +00:00
{% endif %}
< / div >
< div class = "control" >
< button class = "button" type = "submit" >
< span class = "icon icon-search" title = "{% trans 'Search' %}" >
< span class = "is-sr-only" > {% trans "Search" %}< / span >
< / span >
< / button >
< / div >
< / form >
2021-05-22 18:20:39 +00:00
{% include 'snippets/suggested_users.html' with suggested_users=suggested_users %}
2021-03-31 21:53:00 +00:00
< / div >
{% endblock %}