From 975415a8cef38cf2a49c3ce8234c15ef97a69b5f Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Mon, 14 Oct 2013 19:48:24 -0400 Subject: [PATCH] Fixed a webdesign template tag docstring to prevent parsing as metadata. Previously admindocs would throw an error when processing it: "Error in "default-role" directive: no content permitted." refs #6681 --- django/contrib/webdesign/templatetags/webdesign.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/django/contrib/webdesign/templatetags/webdesign.py b/django/contrib/webdesign/templatetags/webdesign.py index b870299cda..055de8999d 100644 --- a/django/contrib/webdesign/templatetags/webdesign.py +++ b/django/contrib/webdesign/templatetags/webdesign.py @@ -41,10 +41,11 @@ def lorem(parser, token): paragraph (starting "Lorem ipsum dolor sit amet, consectetuer..."). Examples: - * ``{% lorem %}`` will output the common "lorem ipsum" paragraph - * ``{% lorem 3 p %}`` will output the common "lorem ipsum" paragraph - and two random paragraphs each wrapped in HTML ``

`` tags - * ``{% lorem 2 w random %}`` will output two random latin words + + * ``{% lorem %}`` will output the common "lorem ipsum" paragraph + * ``{% lorem 3 p %}`` will output the common "lorem ipsum" paragraph + and two random paragraphs each wrapped in HTML ``

`` tags + * ``{% lorem 2 w random %}`` will output two random latin words """ bits = list(token.split_contents()) tagname = bits[0]