Add possibility to inject js in head (analytics)

This commit is contained in:
2022-12-28 23:54:49 +01:00
parent 538dc0bd80
commit ffad964373
5 changed files with 52 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 4.1.3 on 2022-12-28 22:43
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("portal", "0013_remove_flatpage_draft_flatpage_published"),
]
operations = [
migrations.AddField(
model_name="siteconfiguration",
name="extra_head",
field=models.TextField(blank=True),
),
]