summaryrefslogtreecommitdiff
path: root/tests/templates
diff options
context:
space:
mode:
authorJacob Kaplan-Moss <jacob@jacobian.org>2008-07-18 19:45:00 +0000
committerJacob Kaplan-Moss <jacob@jacobian.org>2008-07-18 19:45:00 +0000
commit7997133a3dbf67edcb5a7588c1c049d181a4e61a (patch)
tree3e560d110843a6458e86e8c97718570244a631ee /tests/templates
parentcd80ce7a3d7040e15f567a315850a744619c0d96 (diff)
Fixed #3639: updated generic create_update views to use newforms. This is a backwards-incompatible change.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7952 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/templates')
-rw-r--r--tests/templates/views/article_confirm_delete.html1
-rw-r--r--tests/templates/views/article_detail.html2
-rw-r--r--tests/templates/views/article_form.html3
-rw-r--r--tests/templates/views/urlarticle_detail.html1
-rw-r--r--tests/templates/views/urlarticle_form.html3
5 files changed, 9 insertions, 1 deletions
diff --git a/tests/templates/views/article_confirm_delete.html b/tests/templates/views/article_confirm_delete.html
new file mode 100644
index 0000000000..3f8ff55da6
--- /dev/null
+++ b/tests/templates/views/article_confirm_delete.html
@@ -0,0 +1 @@
+This template intentionally left blank \ No newline at end of file
diff --git a/tests/templates/views/article_detail.html b/tests/templates/views/article_detail.html
index 3f8ff55da6..952299db91 100644
--- a/tests/templates/views/article_detail.html
+++ b/tests/templates/views/article_detail.html
@@ -1 +1 @@
-This template intentionally left blank \ No newline at end of file
+Article detail template.
diff --git a/tests/templates/views/article_form.html b/tests/templates/views/article_form.html
new file mode 100644
index 0000000000..e2aa1f9535
--- /dev/null
+++ b/tests/templates/views/article_form.html
@@ -0,0 +1,3 @@
+Article form template.
+
+{{ form.errors }}
diff --git a/tests/templates/views/urlarticle_detail.html b/tests/templates/views/urlarticle_detail.html
new file mode 100644
index 0000000000..924f310300
--- /dev/null
+++ b/tests/templates/views/urlarticle_detail.html
@@ -0,0 +1 @@
+UrlArticle detail template.
diff --git a/tests/templates/views/urlarticle_form.html b/tests/templates/views/urlarticle_form.html
new file mode 100644
index 0000000000..578dd98ca6
--- /dev/null
+++ b/tests/templates/views/urlarticle_form.html
@@ -0,0 +1,3 @@
+UrlArticle form template.
+
+{{ form.errors }}