Ticket #6566: no-cache.diff

File no-cache.diff, 507 bytes (added by , 16 years ago)

Patch that adds a no-cache header to admin/base.html, fixes problem on Opera 9.26 (Windows)

  • django/contrib/admin/templates/admin/base.html

     
    77{% block extrastyle %}{% endblock %}
    88{% block extrahead %}{% endblock %}
    99{% block blockbots %}<meta name="robots" content="NONE,NOARCHIVE" />{% endblock %}
     10<meta http-equiv="pragma" content="no-cache" />
    1011</head>
    1112{% load i18n %}
    1213
Back to Top