diff options
Diffstat (limited to 'web/templates/search.html')
-rw-r--r-- | web/templates/search.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/web/templates/search.html b/web/templates/search.html new file mode 100644 index 0000000..03980af --- /dev/null +++ b/web/templates/search.html @@ -0,0 +1,12 @@ +{% extends "base.html" %} + +{% block main %} + +<h2>Corporations</h2> +{% for corp in corps %} + <a href="/corporation/{{ corp['corporation_id'] }}"> + {{ corp['corporation_name'] }} + </a> +{% end %} + +{% end %} |