|
Revision 7294, 337 bytes
(checked in by mtredinnick, 4 months ago)
|
Added "svn:eol-style native" to every text file in the tree (*.txt, *.html,
*.py, *.xml and AUTHORS, etc). Added "svn:ignore *.pyc" to some directories in
tests/regressiontests/ that were previously missing it.
Fixed #6545, #6801.
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 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 %} |
|---|