Changes between Initial Version and Version 1 of Ticket #19056, comment 2


Ignore:
Timestamp:
Nov 19, 2012, 7:46:23 AM (12 years ago)
Author:
Aymeric Augustin

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #19056, comment 2

    initial v1  
    1 this also applies to the 'title' context variable set in UserAdmin's def user_change_password(self, request, id, form_url=''): somewhere about:
    2 
     1this also applies to the 'title' context variable set in UserAdmin's `def user_change_password(self, request, id, form_url=''):` somewhere about:
     2{{{
    33context = {
    44            'title': _('Change password: %s') % escape(user.username),
    55            'adminForm': adminForm,
    6 
     6}}}
    77this should be changed to
    8 
     8{{{
    99context = {
    1010            'title': _('Change password: %s') % escape(user.get_username()),
    1111            'adminForm': adminForm,
    12 
     12}}}
    1313i'm on the run right now, but perhaps somebody could commit that.
    1414
Back to Top