{% extends "base.html" %} {% load event_tags %} {% block content %}

{{ name }}

This simple search function will return Tests whose findings, or notes contain the search query, Findings whose title, URL, description, endpoints or references contain the search query and Products whose name or description contain the search query.

{% if products %}
{% for product in products %} {% endfor %}
Name Description
{{ product.name }} {{ product.description|truncatechars:20 }}
{% endif %} {% if findings %}
{% for finding in findings %} {% endfor %}
Title Date
{{ finding.title }} {{ finding.date }}
{% endif %} {% if tests %}
{% for test in tests %} {% endfor %}
Type Date
{{ test.test_type }} {{ test.target_start }}
{% endif %}




{% endblock %} {% block postscript %} {% endblock %}