{% extends 'base.html' %} {% block title %}Search results{% endblock %} {% block right_sidebar %} {% endblock %} {% block content %}

Search results

{% if count<1 %}

No {{query}} in any user name, try another search query.

{% else %} {% for user in users if not user.is_deleted %} {% endfor %}
Username Action
{% if current_user.avatar_img %} user avatar {% else %} {% endif %}
{{user.username}}
Go to {{user.username}}'s library
{% if page.pages > 1 %}
{% endif %} {% endif %}
{% endblock %}