diff options
| author | Jacob Kaplan-Moss <jacob@jacobian.org> | 2008-07-18 19:45:00 +0000 |
|---|---|---|
| committer | Jacob Kaplan-Moss <jacob@jacobian.org> | 2008-07-18 19:45:00 +0000 |
| commit | 7997133a3dbf67edcb5a7588c1c049d181a4e61a (patch) | |
| tree | 3e560d110843a6458e86e8c97718570244a631ee /tests/templates | |
| parent | cd80ce7a3d7040e15f567a315850a744619c0d96 (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.html | 1 | ||||
| -rw-r--r-- | tests/templates/views/article_detail.html | 2 | ||||
| -rw-r--r-- | tests/templates/views/article_form.html | 3 | ||||
| -rw-r--r-- | tests/templates/views/urlarticle_detail.html | 1 | ||||
| -rw-r--r-- | tests/templates/views/urlarticle_form.html | 3 |
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 }} |
