Skip to content
Snippets Groups Projects
Commit d3779ff1 authored by Ondrej Rehounek's avatar Ondrej Rehounek
Browse files

district and region: Alter verbose name for donation page

parent d1b3113c
No related branches found
No related tags found
2 merge requests!435Release upgrades,!430Feature/majak misc enhancements
Pipeline #7044 passed
# Generated by Django 3.2.11 on 2022-02-20 18:21
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("district", "0032_alter_districthomepage_options"),
]
operations = [
migrations.AlterField(
model_name="districthomepage",
name="donation_page",
field=models.URLField(
blank=True,
null=True,
verbose_name="URL pro příjem darů (tlačítko Přispěj)",
),
),
]
...@@ -77,7 +77,9 @@ class DistrictHomePage(MetadataPageMixin, CalendarMixin, Page): ...@@ -77,7 +77,9 @@ class DistrictHomePage(MetadataPageMixin, CalendarMixin, Page):
"URL pro zájemce o členství", blank=True, null=True "URL pro zájemce o členství", blank=True, null=True
) )
donation_page = models.URLField("URL pro příjem darů", blank=True, null=True) donation_page = models.URLField(
"URL pro příjem darů (tlačítko Přispěj)", blank=True, null=True
)
# Lide uvedeni v paticce # Lide uvedeni v paticce
footperson_coord = models.ForeignKey( footperson_coord = models.ForeignKey(
......
# Generated by Django 3.2.11 on 2022-02-20 18:21
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("region", "0009_alter_regionhomepage_options"),
]
operations = [
migrations.AlterField(
model_name="regionhomepage",
name="donation_page",
field=models.URLField(
blank=True,
null=True,
verbose_name="URL pro příjem darů (tlačítko Přispěj)",
),
),
]
...@@ -77,7 +77,9 @@ class RegionHomePage(MetadataPageMixin, CalendarMixin, Page): ...@@ -77,7 +77,9 @@ class RegionHomePage(MetadataPageMixin, CalendarMixin, Page):
"URL pro zájemce o členství", blank=True, null=True "URL pro zájemce o členství", blank=True, null=True
) )
donation_page = models.URLField("URL pro příjem darů", blank=True, null=True) donation_page = models.URLField(
"URL pro příjem darů (tlačítko Přispěj)", blank=True, null=True
)
# Lide uvedeni v paticce # Lide uvedeni v paticce
footperson_coord = models.ForeignKey( footperson_coord = models.ForeignKey(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment