From c65ac4c9f1bdaca473d3f0a624b0cc19a8ca149d Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Tue, 27 Jul 2021 17:00:44 +0200 Subject: [PATCH] profile: show attribute name in list (#55864) --- hobo/profile/templates/profile/attributedefinition_list.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hobo/profile/templates/profile/attributedefinition_list.html b/hobo/profile/templates/profile/attributedefinition_list.html index 60b1337..ae2e40a 100644 --- a/hobo/profile/templates/profile/attributedefinition_list.html +++ b/hobo/profile/templates/profile/attributedefinition_list.html @@ -24,7 +24,7 @@ Use drag and drop with the ⣿ handles to reorder the profile fields.
{% for object in object_list %}
- {{object.label}} ({{object.get_real_kind_display}}) + {{object.label}} ({{object.get_real_kind_display}}, "{{ object.name }}") {% trans 'options' %}
{% endfor %} -- 2.32.0.rc0