summaryrefslogtreecommitdiff
path: root/tests/modeltests/model_forms/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/modeltests/model_forms/models.py')
-rw-r--r--tests/modeltests/model_forms/models.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/modeltests/model_forms/models.py b/tests/modeltests/model_forms/models.py
index e8598bd68f..6838f11d4e 100644
--- a/tests/modeltests/model_forms/models.py
+++ b/tests/modeltests/model_forms/models.py
@@ -992,4 +992,22 @@ True
u'...test3.png'
>>> instance.delete()
+# Media on a ModelForm ########################################################
+
+# Similar to a regular Form class you can define custom media to be used on
+# the ModelForm.
+
+>>> class ModelFormWithMedia(ModelForm):
+... class Media:
+... js = ('/some/form/javascript',)
+... css = {
+... 'all': ('/some/form/css',)
+... }
+... class Meta:
+... model = PhoneNumber
+>>> f = ModelFormWithMedia()
+>>> print f.media
+<link href="/some/form/css" type="text/css" media="all" rel="stylesheet" />
+<script type="text/javascript" src="/some/form/javascript"></script>
+
"""}