Author: lukeplant
Date: 2008-07-25 09:44:56 -0500 (Fri, 25 Jul 2008)
New Revision: 8073

Modified:
   django/trunk/django/contrib/admin/templates/admin/includes/fieldset.html
Log:
Fixed #6109 again.


Modified: 
django/trunk/django/contrib/admin/templates/admin/includes/fieldset.html
===================================================================
--- django/trunk/django/contrib/admin/templates/admin/includes/fieldset.html    
2008-07-25 11:32:06 UTC (rev 8072)
+++ django/trunk/django/contrib/admin/templates/admin/includes/fieldset.html    
2008-07-25 14:44:56 UTC (rev 8073)
@@ -1,6 +1,6 @@
 <fieldset class="module aligned {{ fieldset.classes }}">
   {% if fieldset.name %}<h2>{{ fieldset.name }}</h2>{% endif %}
-  {% if fieldset.description %}<div class="description">{{ 
fieldset.description }}</div>{% endif %}
+  {% if fieldset.description %}<div class="description">{{ 
fieldset.description|safe }}</div>{% endif %}
   {% for line in fieldset %}
       <div class="form-row{% if line.errors %} errors{% endif %} {% for field 
in line %}{{ field.field.name }} {% endfor %} ">
       {{ line.errors }}
@@ -14,4 +14,4 @@
       {% endfor %}
       </div>
   {% endfor %}
-</fieldset>
\ No newline at end of file
+</fieldset>


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to