-
Notifications
You must be signed in to change notification settings - Fork 0
/
stakeholder.tpl
66 lines (48 loc) · 1.81 KB
/
stakeholder.tpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Program Design for Socio-Environmental Startups">
<title>Jaaga – Project Sphere – Responses</title>
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.6.0/pure-min.css">
<!--[if lte IE 8]>
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.6.0/grids-responsive-old-ie-min.css">
<![endif]-->
<!--[if gt IE 8]><!-->
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.6.0/grids-responsive-min.css">
<!--<![endif]-->
<!--[if lte IE 8]>
<link rel="stylesheet" href="{{ get_url('static', filename='marketing-old-ie.css') }}">
<![endif]-->
<!--[if gt IE 8]><!-->
<link rel="stylesheet" type="text/css"
href="{{ get_url('static', filename='marketing.css') }}" />
<!--<![endif]-->
</head>
<body>
<div class="content">
<h1 class="content-head is-center"><a href="/">Jaaga - Project Sphere</a></h1>
<h4 class="content-head is-center">Program design for socio-environmental entrepreneurs</h4>
<form class="pure-form" action="/" method="post">
<input name="phrase" type="text" placeholder="Search responses" />
</form>
%if count > 0:
<h2 class="content-head is-center">Your search for "{{name}}" yielded {{count}} results</h2>
%end
<div class="table-responsive">
<table class="center mq-table pure-table-horizontal pure-table-striped pure-table">
%for result in results:
<tr>
<td>{{result[0]}} </td>
<td>{{result[1]}} </td>
</tr>
%end
</table>
</div>
</div>
<div class="footer l-box is-center">
Made with love by the <a href="http://jaaga.in">Jaaga</a> Crew
</div>
</body>
</html>