remove use of 1.6.4-compatible 'wrapper'
[gae-samples.git] / crowdguru / templates / latest.html
blob0c76bf3ded73eaee9825144e3eb2e4efc9edf48f
1 <html>
2 <head>
3 <title>Latest questions answered by the amazing Crowd Guru</title>
4 <link rel="stylesheet" type="text/css" href="/static/base.css" />
5 </head>
6 <body>
7 <h1>The Amazing Crowd Guru</h1>
8 <h2>What's this?</h2>
9 <p>The Amazing Crowd Guru is here to answer all your questions. Add
10 <em>crowdguru@appspot.com</em> to your Google talk or Jabber friend list, and
11 ask him a question by sending <em>/tellme &lt;question></em>. In return, he
12 might ask a small favor...</p>
13 <p>Available commands:</p>
14 <table>
15 <tr><th>/tellme <em>&lt;question></em></th><td>Ask the Amazing Crowd Guru a
16 question. If he asks you one back, respond by replying with your answer. If
17 you can't answer, don't - or send <em>/askme</em> for another question to
18 answer. </td></tr>
19 <tr><th>/askme</th><td>Have the Amazing Crowd Guru ask you a question. Answer
20 by replying to him.</td></tr>
21 <tr><th>/help</th><td>Display a quick rundown of available commands.</td></tr>
22 </table>
24 <h2>Latest questions answered by the Amazing Crowd Guru</h2>
25 <dl>
26 {% for question in questions %}
27 <dt>{{question.question}}</dt>
28 <dd>{{question.answer}}</dd>
29 {% endfor %}
30 </dl>
31 </body>
32 </html>