allow to disable appcat price calculator
This commit is contained in:
parent
6ad8b9aa49
commit
01d35a461b
5 changed files with 49 additions and 3 deletions
|
@ -0,0 +1,28 @@
|
|||
# Generated by Django 5.2 on 2025-06-04 15:45
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("services", "0032_externalpriceplans_service_level"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name="vshnappcatprice",
|
||||
name="public_display_enabled",
|
||||
field=models.BooleanField(
|
||||
default=True,
|
||||
help_text="Enable public display of price calculator on offering detail page",
|
||||
),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name="externalpriceplans",
|
||||
name="compare_to",
|
||||
field=models.ManyToManyField(
|
||||
blank=True, related_name="external_prices", to="services.computeplan"
|
||||
),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue