pricelist on offering detail

This commit is contained in:
Tobias Brunner 2025-05-23 17:43:29 +02:00
parent 5b4392f838
commit d9a04655ed
No known key found for this signature in database
6 changed files with 496 additions and 38 deletions

View file

@ -0,0 +1,23 @@
# Generated by Django 5.2 on 2025-05-23 15:23
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("services", "0029_alter_computeplangroup_options"),
]
operations = [
migrations.AddField(
model_name="serviceoffering",
name="msp",
field=models.CharField(
choices=[("VS", "VSHN")],
default="VS",
max_length=2,
verbose_name="Managed Service Provider",
),
),
]