How to add html before a specific form?

44 Views Asked by At

I am trying to add some custom html to my form.

My admin.py is

class InvoiceAdmin(admin.ModelAdmin):
    fieldsets = (
        ('Test', {'fields': ('description', 'total_price'),})
    )

Any ideas?

0

There are 0 best solutions below