Comment out the 'loadtest' backend in the 'counter' backend sample so that it does...
[gae-samples.git] / paging / suggestion.html
blob4a3539828a80fc6f3c50021395bfa8c2e12a270d
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <title> Suggestions </title>
5 </head>
6 <body>
8 <ol>
9 {% for s in suggestions %}
10 <li>{{ s.suggestion|escape }}
11 {% endfor %}
12 </ol>
14 {% if next %}
15 <p><a href="?bookmark={{ next }}">Next</a></p>
16 {% endif %}
19 <form action="" method="post">
20 <label>Suggestion: <input type="text" name="suggestion" value="" />
21 <p><input type="submit" value="Add" /></p>
22 </form>
24 <hr>
26 <form action="./pop/" method="post">
27 <p>You can use the button below to add six suggestions with the same timestamp
28 to see how the paging works:</p>
29 <p><input type="submit" value="Populate" /></p>
30 </form>
33 </body>
34 </html>