Skip to content

Commit 86154c4

Browse files
deps/a4: add ref a4 main and migrate polymorphic for follow alerts (#2991)
1 parent 445e1d4 commit 86154c4

File tree

7 files changed

+47
-4
lines changed

7 files changed

+47
-4
lines changed

adhocracy-plus/assets/scss/components/_alerts.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ $messages-margin-bottom: 25px;
3232
position: absolute;
3333
top: 0;
3434
right: 0;
35-
padding: 0.5rem;
35+
margin: 0;
36+
padding: 5px 8px;
3637
background: transparent;
3738
border: none;
3839
cursor: pointer;

adhocracy-plus/assets/scss/components/_follow.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
.alert {
33
margin-top: $r-spacer;
44
}
5+
6+
a .fas.fa-external-link-alt {
7+
margin-left: 0.25em;
8+
text-decoration: none !important;
9+
}
510
}
611

712
.a4-btn--follow:before,

adhocracy-plus/config/settings/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,10 @@
129129
"csp.middleware.CSPMiddleware",
130130
"django_cloudflare_push.middleware.push_middleware",
131131
"django.contrib.sessions.middleware.SessionMiddleware",
132-
"apps.users.middleware.SetUserLanguageCookieMiddleware",
133132
"django.middleware.locale.LocaleMiddleware",
134133
"django.middleware.common.CommonMiddleware",
135134
"django.contrib.auth.middleware.AuthenticationMiddleware",
135+
"apps.users.middleware.SetUserLanguageCookieMiddleware",
136136
"django.contrib.messages.middleware.MessageMiddleware",
137137
"wagtail.contrib.redirects.middleware.RedirectMiddleware",
138138
"allauth.account.middleware.AccountMiddleware",
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Generated by Django 5.1.11 on 2025-10-29 15:59
2+
3+
from django.db import migrations
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
("a4_candy_activities", "0003_alter_activity_description"),
10+
]
11+
12+
operations = [
13+
migrations.AlterModelOptions(
14+
name="activity",
15+
options={"base_manager_name": "objects"},
16+
),
17+
]
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Generated by Django 5.1.11 on 2025-10-29 15:59
2+
3+
from django.db import migrations
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
(
10+
"a4_candy_interactive_events",
11+
"0006_alter_extrafieldsinteractiveevent_live_stream",
12+
),
13+
]
14+
15+
operations = [
16+
migrations.AlterModelOptions(
17+
name="extrafieldsinteractiveevent",
18+
options={"base_manager_name": "objects"},
19+
),
20+
]

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"@maplibre/maplibre-gl-leaflet": "0.0.22",
2020
"@prosopo/procaptcha-wrapper": "^2.6.11",
2121
"@react-leaflet/core": "^2.1.0",
22-
"adhocracy4": "liqd/adhocracy4#d175c853b41ce3ae7a397ff6d837be3334e5aaea",
22+
"adhocracy4": "git+https://github.com/liqd/adhocracy4.git#main",
2323
"autoprefixer": "10.4.20",
2424
"bootstrap": "5.2.3",
2525
"css-loader": "7.1.2",

requirements/base.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# A4
2-
git+https://github.com/liqd/adhocracy4.git@d175c853b41ce3ae7a397ff6d837be3334e5aaea#egg=adhocracy4
2+
git+https://github.com/liqd/adhocracy4.git@main#egg=adhocracy4
33

44
# Additional requirements
55
brotli==1.1.0

0 commit comments

Comments
 (0)