diff options
| author | Luke Plant <L.Plant.98@cantab.net> | 2008-07-25 14:44:56 +0000 |
|---|---|---|
| committer | Luke Plant <L.Plant.98@cantab.net> | 2008-07-25 14:44:56 +0000 |
| commit | 3992683ea349e2843a710e79c1c69ac2d80bb1ac (patch) | |
| tree | 74d7a4553e24d608b4a7e3b286db7f27cb7b67aa | |
| parent | 3898af2f51ed810cb9a1873aacede28851a83449 (diff) | |
Fixed #6109 again.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8073 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/admin/templates/admin/includes/fieldset.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/contrib/admin/templates/admin/includes/fieldset.html b/django/contrib/admin/templates/admin/includes/fieldset.html index a61795cfe4..27e54c75d3 100644 --- a/django/contrib/admin/templates/admin/includes/fieldset.html +++ b/django/contrib/admin/templates/admin/includes/fieldset.html @@ -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> |
