blob: 4de432c7ab88753f0d670ea6328cf3e3bc076f49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{% extends "template.html.j2" %}
{% block content %}
<div id="search">
{% if companies == [] %}
<a>There were no results for that search. Please refine your search.</a>
{% else %}
<ul>
{% for name, id_ in companies %}
<li>
<a href="{{ '/company/%s' % id_ }}">{{ name }}</a>
</li>
{% endfor %}
</ul>
{% endif %}
</div>
{% endblock %}
|