Fix busted HTML on flag package page

Missing a closing div and no real need for the br tag.

Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Dan McGee 2010-03-01 21:41:44 -06:00
parent 096c6ef26f
commit 9b59f7e1ad

View File

@ -1,5 +1,6 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block title %}Arch Linux - Flag Package - {{ pkg.pkgname }}{% endblock %} {% block title %}Arch Linux - Flag Package - {{ pkg.pkgname }}{% endblock %}
{% block content %} {% block content %}
<div> <div>
{% if confirmed %} {% if confirmed %}
@ -22,7 +23,7 @@
{{form}} {{form}}
</table> </table>
<input type="submit" value=" Confirm " /> <input type="submit" value=" Confirm " />
<br />
</form> </form>
{% endif %} {% endif %}
</div>
{% endblock %} {% endblock %}