{# Copyright (c) 2015 Chintalagiri Shashank Released under the MIT license #} {% extends "base_templates/base.html" %} {% import "parts/forms.html" as forms %} {% block main %} {% import "parts/sourcing_search_form.html" as sourcing_search_form %} {% import "parts/sourcing_ident_sources.html" as sourcing_ident_sources %} {% import "parts/gsymlib_symbol.html" as gsymlib_symbol %}

Sourcing Search Results

{% if stage.symbol %}
{{ sourcing_search_form.render_search_form(form) }}
{{ gsymlib_symbol.render_symbol(stage.symbol, False, None) }}
{% else %} {{ sourcing_search_form.render_search_form(form) }} {% endif %}
{{ sourcing_ident_sources.render_indicative_sources( 'SEARCH RESULTS', stage.isinfos, stage.ident) }}
{% endblock %}