* refactor: avoid shadowing type() * style: Black * feat: is_blanket_disclosure field * feat: add field to form * feat: js to mark field required/not required * feat: blanket disclosure = royalty-free license * feat: manage licensing radio buttons * fix: adjust wording/format of disclosure page * fix: point at RFC 8179 in checkbox label * test: test blanket disclosure licensing restrictions * fix: conditionally render is_blanket_disclosure * test: refactor test case * test: patent details optional for blanket ipr
17 lines
424 B
Python
17 lines
424 B
Python
# Copyright The IETF Trust 2024, All Rights Reserved
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("ipr", "0003_alter_iprdisclosurebase_docs"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="holderiprdisclosure",
|
|
name="is_blanket_disclosure",
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
]
|