Ticket #14358: 14358_history_verbose_field_name.diff

File 14358_history_verbose_field_name.diff, 612 bytes (added by Julien Phalip, 13 years ago)

Patch in diff format this time

  • django/contrib/admin/options.py

     
    561561        """
    562562        change_message = []
    563563        if form.changed_data:
    564             change_message.append(_('Changed %s.') % get_text_list(form.changed_data, _('and')))
     564            change_message.append(_('Changed %s.') % get_text_list([form.fields[field_name].label for field_name in form.changed_data], _('and')))
    565565
    566566        if formsets:
    567567            for formset in formsets:
Back to Top