fix button words

This commit is contained in:
mohamad
2026-05-31 12:45:05 +03:30
parent 7726b0b6ec
commit de2789bd99
14 changed files with 271 additions and 36 deletions
@@ -0,0 +1,33 @@
# Generated by Django 5.0.2 on 2026-05-31 09:10
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('products', '0012_migrate_homepage_visibility_to_mainproduct'),
]
operations = [
migrations.AddField(
model_name='mainproduct',
name='package_resource_button_text',
field=models.CharField(default='PyPI', help_text='Label for the package resource button on package releases.', max_length=100),
),
migrations.AddField(
model_name='mainproduct',
name='package_source_button_text',
field=models.CharField(default='Source', help_text='Label for the source code button on package releases.', max_length=100),
),
migrations.AddField(
model_name='subproduct',
name='package_resource_button_text',
field=models.CharField(default='PyPI', help_text='Label for the package resource button on package releases.', max_length=100),
),
migrations.AddField(
model_name='subproduct',
name='package_source_button_text',
field=models.CharField(default='Source', help_text='Label for the source code button on package releases.', max_length=100),
),
]