{% extends 'ideabook/base.html' %} {% load widget_tweaks %} {% load humanize %} {% block breadcrumb %} {% endblock %} {% block content %}
{% if submitbutton == 'Search' and request.GET.q != '' %} {% if results %}
Results for "{{ request.GET.q }}"

{% for user in results %}
{%if user.profile_user.profile_pic %} {% else %} {% endif %}
{{user.username}}

{% endfor %} {% else %}

No results found for "{{request.GET.q}}"

{% endif %} {% endif %}
{% endblock %}