- Timestamp:
- 05/13/08 23:07:42 (8 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/0.91-bugfixes/django/contrib/admin/views/decorators.py
r2010 r7529 3 3 from django.models.auth import users 4 4 from django.utils import httpwrappers 5 from django.utils.html import escape 5 6 from django.utils.translation import gettext_lazy 6 7 import base64, datetime, md5 … … 22 23 return render_to_response('admin/login', { 23 24 'title': _('Log in'), 24 'app_path': request.path,25 'app_path': escape(request.path), 25 26 'post_data': post_data, 26 27 'error_message': error_message
