You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I recently used the export functionality with a table, and it worked perfectly except for one issue. Our column headers are highly customised, via defining verbose_name, to add popup explanations in HTML. Clearly that HTML is irrelevant in the export - but the only way I could see to remove it was to define an identical column without the custom header, mark it as invisible, and exclude the original column from the export.
It would be great if there was some equivalent of the values_foo method to make it possible to output the header without any customisation. Or possibly even a plain_verbose_name attribute that defaults to the value of verbose_name.
What do you think? Happy to contribute a PR if you think this would be useful.
The text was updated successfully, but these errors were encountered:
I understand the use case, but I'm not sure if supporting another customisation is worth it. If you can provide a reasonable patch, I'll have a serious look at it.
@jieter could you take a look at #970 and let me know your thoughts? I am in a similar position with some gnarly html coming out in export headers and would love to have a nice declarative way to clean that up!
I recently used the export functionality with a table, and it worked perfectly except for one issue. Our column headers are highly customised, via defining
verbose_name
, to add popup explanations in HTML. Clearly that HTML is irrelevant in the export - but the only way I could see to remove it was to define an identical column without the custom header, mark it as invisible, and exclude the original column from the export.It would be great if there was some equivalent of the
values_foo
method to make it possible to output the header without any customisation. Or possibly even aplain_verbose_name
attribute that defaults to the value ofverbose_name
.What do you think? Happy to contribute a PR if you think this would be useful.
The text was updated successfully, but these errors were encountered: