﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
16033	get_field_display: Django needs a filter to allow get_field_display for a dynamic field	thepapermen	nobody	"{{ SomeModel.get_field_display }} is nice, but it is handy only for a specified field.

If One wants to write a more universal template which should work with any set of fields, this won't work.

What I propose is a universal filter which should provide human-readable name for a field of any type.

For example, like this:

<table>
    {% for item in query %}
        <tr>
            {% for field in fields %}
                <td>{{item|human_readable:field}}</td>
            {% endfor %}
        </tr>
    {% endfor %}
<table>

This will be a simple yet powerful way to create nice human-readable tables from Django models and forms.
"	New feature	closed	Template system	1.3	Normal	duplicate			Unreviewed	0	0	0	0	0	0
