Login

App Display Label Template Filter Workaround

Author:
programmerDan
Posted:
September 2, 2011
Language:
Python
Version:
Not specified
Score:
1 (after 1 ratings)

I have been wrestling with custom app labels and have come to the conclusion that this is the easiest workaround for the problem. Since I name most of my apps as Foo_Bar this makes them look a lot nicer. I just apply the filter to whatever app label and it fixes it.

If you need a more complex replacement, you could just have an if statement that looks for the full app label and replaces it with whatever you want.

1
2
3
4
5
6
@register.filter
def niceLabel(label, arg=None):
    label = label.replace("_", " ")
    label = label.title()
    
    return label

More like this

  1. Template tag - list punctuation for a list of items by shapiromatron 3 months, 1 week ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 3 months, 2 weeks ago
  3. Serializer factory with Django Rest Framework by julio 10 months, 2 weeks ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 11 months ago
  5. Help text hyperlinks by sa2812 12 months ago

Comments

Please login first before commenting.