Hide billing addresses #281

Merged
tobru merged 2 commits from 246-hide-billing-address into main 2025-11-13 09:52:59 +00:00
Showing only changes of commit b3ecae6fd9 - Show all commits

View file

@ -0,0 +1,41 @@
# Generated by Django 5.2.8 on 2025-11-12 09:31
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("core", "0013_add_form_config"),
]
operations = [
migrations.AddField(
model_name="organizationorigin",
name="billing_message",
field=models.TextField(
blank=True,
help_text="Optional message to display instead of billing address (e.g., 'You will be invoiced by Exoscale').",
verbose_name="Billing Message",
),
),
migrations.AddField(
model_name="organizationorigin",
name="hide_billing_address",
field=models.BooleanField(
default=False,
help_text="If enabled, the billing address will not be shown in the organization details view.",
verbose_name="Hide Billing Address",
),
),
migrations.AlterField(
model_name="controlplane",
name="user_info",
field=models.JSONField(
blank=True,
help_text='Array of info objects: [{"title": "", "content": "", "help_text": ""}]. The help_text field is optional and will be shown as a hover popover on an info icon.',
null=True,
verbose_name="User Information",
),
),
]