{% extends 'simple_bugs/base.html' %} {% block content %} {% load crispy_forms_filters %}

Search

{{ form|crispy }}
 
{% if query %}

Results

{% if page.has_previous or page.has_next %}
{% if page.has_previous %}{% endif %}« Previous{% if page.has_previous %}{% endif %} | {% if page.has_next %}{% endif %}Next »{% if page.has_next %}{% endif %}
{% endif %} {% else %} {# Show some example queries to run, maybe query syntax, something else? #} {% endif %}
{% for result in page.object_list %} {% empty %}

No results found.

{% endfor %}
Type ID Title Requirement Date Created Open For
{% if result.object.type == 'BUG' %} {% elif result.object.type == 'FEATURE_REQUEST' %} {% endif %} {{ result.object.id }} {{ result.object.title }} {% if result.object.requirement %} {{ result.object.requirement.title }} {% else %} None {% endif %} {{ result.object.created_on }} {{ result.object.created_on|timesince }}
{% endblock %}