{% extends "base.html" %} {% load gravatar %} {% load static %} {% load humanize %} {% block content %}

Search Results for"{{ query }}"


{% if type %} {% endif %}
{% if query %}
{% if issues %}
{% for activity in issues %} {% include "_activity.html" %} {% endfor %}
{% elif domains %}
{% for domain in domains %} {% endfor %}
{% elif users %}
{% for user in users %}
{% if user.user.userprofile.avatar %} {{ user.user.username }} {% elif user.user.socialaccount_set.all.0.get_avatar_url %} user image {% else %} user image {% endif %} {{ user.user.username }}
{% if user.total_score is None %} 0 Point {% else %} {{ user.total_score|floatformat:0 }} Points {% endif %}
View Profile
{% endfor %}
{% else %}
{% endif %}
{% endif %} {% endblock content %}