~ubuntu-branches/ubuntu/quantal/python-django/quantal

« back to all changes in this revision

Viewing changes to tests/templates/form_view.html

  • Committer: Bazaar Package Importer
  • Author(s): Scott James Remnant, Eddy Mulyono
  • Date: 2008-09-16 12:18:47 UTC
  • mfrom: (1.1.5 upstream) (4.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080916121847-mg225rg5mnsdqzr0
Tags: 1.0-1ubuntu1
* Merge from Debian (LP: #264191), remaining changes:
  - Run test suite on build.

[Eddy Mulyono]
* Update patch to workaround network test case failures.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% extends "base.html" %}
 
2
{% block title %}Submit data{% endblock %}
 
3
{% block content %}
 
4
<h1>{{ message }}</h1>
 
5
<form method='post' action='.'>
 
6
{% if form.errors %}
 
7
<p class='warning'>Please correct the errors below:</p>
 
8
{% endif %}
 
9
<ul class='form'>
 
10
{{ form }}
 
11
<li><input type='submit' value='Submit'></li>
 
12
</ul>
 
13
</form>
 
14
 
 
15
{% endblock %}
 
 
b'\\ No newline at end of file'