Opened 18 years ago

Closed 18 years ago

Last modified 18 years ago

#1884 closed enhancement (fixed)

[patch] Make django.db.models.options.get_verbose_name smarter

Reported by: Alex Dedul Owned by: Adrian Holovaty
Component: Metasystem Version:
Severity: normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

When you have model named like VPNAccount current get_verbose_name function results in "v p n account" so your permission names and content_type name looks not so good, while its apparent that you expect "vpn account". Patch below is to fix this behavoiur to saner one.

Attachments (1)

get_verbose_name.patch (611 bytes ) - added by Alex Dedul 18 years ago.
get_verbose_name patch

Download all attachments as: .zip

Change History (2)

by Alex Dedul, 18 years ago

Attachment: get_verbose_name.patch added

get_verbose_name patch

comment:1 by Adrian Holovaty, 18 years ago

Resolution: fixed
Status: newclosed

(In [2909]) Fixed #1884 -- Made django.db.models.options.get_verbose_name smarter. Thanks, Alex Dedul

Note: See TracTickets for help on using tickets.
Back to Top