Once again, fixed tests so they pass, although they don't actually

test anything useful.
This commit is contained in:
Simon Brooke 2014-07-07 19:55:14 +01:00
parent 257d306d5d
commit c0e5729c81
7 changed files with 75 additions and 34 deletions

View file

@ -1,19 +1,6 @@
{% extends "templates/base.html" %}
{% block content %}
<div>
<form action="world">
<p class="widget">
<label for="y">Size of your world: rows</label>
<input name="y" type="range" min="5" max="100" value="{{y}}" required/>
</p>
<p class="widget">
<label for="y">Size of your world: columns</label>
<input name="x" type="range" min="5" max="100" value="{{x}}" required/>
</p>
<p class="widget">
<label for="submit">&nbsp;</label>
<input name="submit" id="submit" type="submit" value="Go!"/>
</p>
</form>
{{content|safe}}
</div>
{% endblock %}