{% extends "internal-layout.html" %} {% block title %}Fleeg | {{ user.first_name }} {{ user.last_name }}{% endblock %} {% block content %} {% include 'side-menu.html' %}

Search

{% if search.results %}
{{ search.results | length }} Results found.
{% endif %}
{% for result in search.results %}
{% if result.result_type == 'user' %}
@{{ result.user.username }}
joined at {{ result.created_at|date:'M. d, Y' }}
{% if user != result.user %} {% if user.is_following %}
{% csrf_token %}
{% else %}
{% csrf_token %}
{% endif %} {% endif %}
{% else %}
{{ result.url|truncatechars:180 }}
{% if result.summary %}
{{ result.summary }}
{% endif %} {% if result.tags %}
Tags: {% for tag in result.get_tags_as_list %} {{ tag }} {% endfor %}
{% endif %}
Published by {{ result.publisher.user.first_name }} {{ result.publisher.user.last_name }} at {{ result.created_at|date:'M. d, Y' }}
{% endif %}
{% empty %}
No items found.
{% endfor %}
{% endblock %}