Skip to content
Snippets Groups Projects
Commit f56a0e07 authored by Tomáš Valenta's avatar Tomáš Valenta
Browse files

run pre-commit hooks

parent 67486fb1
No related branches found
No related tags found
2 merge requests!831Fix atom feed,!830Fix atom feed URLs
Pipeline #14933 passed
...@@ -4,15 +4,19 @@ from django.db import migrations, models ...@@ -4,15 +4,19 @@ from django.db import migrations, models
class Migration(migrations.Migration): class Migration(migrations.Migration):
dependencies = [ dependencies = [
('uniweb', '0049_alter_uniwebcalendarpage_calendar_url_and_more'), ("uniweb", "0049_alter_uniwebcalendarpage_calendar_url_and_more"),
] ]
operations = [ operations = [
migrations.AddField( migrations.AddField(
model_name='uniwebhomepage', model_name="uniwebhomepage",
name='donation_page', name="donation_page",
field=models.URLField(blank=True, default='https://dary.pirati.cz', null=True, verbose_name='URL pro příjem darů (tlačítko Darovat)'), field=models.URLField(
blank=True,
default="https://dary.pirati.cz",
null=True,
verbose_name="URL pro příjem darů (tlačítko Darovat)",
),
), ),
] ]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment