summaryrefslogtreecommitdiffstats
path: root/web/templates/search.html
diff options
context:
space:
mode:
authorraylu <raylu@gridium.com>2013-10-19 23:57:55 -0700
committerraylu <raylu@gridium.com>2013-10-19 23:57:55 -0700
commit02a3b0d8caf160da78bd4b355a7c11d558abe036 (patch)
tree20ef28380215f5b0dcd19aab61ed9b63db2ba46c /web/templates/search.html
parent4fcc479ed7656f675491c3563eff6c966118a30e (diff)
downloadykill-02a3b0d8caf160da78bd4b355a7c11d558abe036.tar.xz
corp search
Diffstat (limited to 'web/templates/search.html')
-rw-r--r--web/templates/search.html12
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 %}