October feature list #226

Merged
tobru merged 36 commits from october into main 2025-10-22 13:43:34 +00:00
Showing only changes of commit 014e88aa24 - Show all commits

View file

@ -73,16 +73,6 @@ class OrganizationAdmin(admin.ModelAdmin):
return readonly_fields
def get_form(self, request, obj=None, **kwargs):
form = super().get_form(request, obj, **kwargs)
if obj and obj.has_inherited_billing_entity:
form.base_fields["billing_entity"].help_text = _(
"This billing entity is inherited from the organization's origin and cannot be modified."
)
return form
@admin.register(BillingEntity)
class BillingEntityAdmin(admin.ModelAdmin):