How can I change the header color and language in django-import-export?

58 Views Asked by At

I have a resource to export

class RequestResource(resources.ModelResource):
   class Meta:
        model = Request
        fields = ("service__name","user_name","user_address","user_number","user_email","region__name","tariff__name",'status','employee','comment','creation_date','type','connection_status')

How do I export names in the language I need? enter image description here

Is it also possible to change colors in excel?

0

There are 0 best solutions below