Changeset 3023
- Timestamp:
- 05/31/06 10:10:01 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/contrib/admin/templates/admin/change_form.html
r2809 r3023 13 13 <a href="../../../">{% trans "Home" %}</a> › 14 14 <a href="../">{{ opts.verbose_name_plural|capfirst }}</a> › 15 {% if add %}{% trans "Add" %} {{ opts.verbose_name }}{% else %}{{ original| striptags|truncatewords:"18"}}{% endif %}15 {% if add %}{% trans "Add" %} {{ opts.verbose_name }}{% else %}{{ original|truncatewords:"18"|escape }}{% endif %} 16 16 </div> 17 17 {% endif %}{% endblock %} django/trunk/django/contrib/admin/templates/admin/filter.html
r1443 r3023 4 4 {% for choice in choices %} 5 5 <li{% if choice.selected %} class="selected"{% endif %}> 6 <a href="{{ choice.query_string }}">{{ choice.display }}</a></li>6 <a href="{{ choice.query_string }}">{{ choice.display|escape }}</a></li> 7 7 {% endfor %} 8 8 </ul>
