6
inlines can’t be a string, ie. use this:
inlines = [AppointmentInline,]
instead of:
inlines = ['AppointmentInline',]
Source:stackexchange.com
6
inlines can’t be a string, ie. use this:
inlines = [AppointmentInline,]
instead of:
inlines = ['AppointmentInline',]