diff options
Diffstat (limited to 'web/templates/search.html')
-rw-r--r-- | web/templates/search.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/web/templates/search.html b/web/templates/search.html index 03980af..d84c5da 100644 --- a/web/templates/search.html +++ b/web/templates/search.html @@ -1,12 +1,12 @@ {% extends "base.html" %} +{% block js %} + <script src="/static/js/search.js"></script> +{% end %} + {% block main %} <h2>Corporations</h2> -{% for corp in corps %} - <a href="/corporation/{{ corp['corporation_id'] }}"> - {{ corp['corporation_name'] }} - </a> -{% end %} +<div id="corps"></div> {% end %} |