From 3e1c33e3a3f5b9829f2d2a22d610a486a03f56aa Mon Sep 17 00:00:00 2001 From: rucki Date: Mon, 24 Aug 2026 11:22:33 +0200 Subject: [PATCH] Fix mobile tag picker in editor --- core/templates/core/_edit_form.html | 11 +++++------ core/templates/core/base.html | 2 +- core/templates/core/item_editor.html | 11 +++++------ 3 files changed, 11 insertions(+), 13 deletions(-) diff --git a/core/templates/core/_edit_form.html b/core/templates/core/_edit_form.html index 3068429..ec488a3 100644 --- a/core/templates/core/_edit_form.html +++ b/core/templates/core/_edit_form.html @@ -3,13 +3,12 @@ {% csrf_token %}
{% trans "Type:" %} {{ item.get_kind_display }}
-
- -
-
-
{% trans "Choose tag" %}
{% for tag in tags %}{% endfor %}
+
+ {% trans "Add tags" %} +
+ {% for tag in tags %}{% endfor %}
-
+
diff --git a/core/templates/core/base.html b/core/templates/core/base.html index 217888b..a5356a3 100644 --- a/core/templates/core/base.html +++ b/core/templates/core/base.html @@ -23,7 +23,7 @@
{% block toolbar_filter %}{% endblock %}
{% for message in messages %}
{{ message }}
{% endfor %}{% block content %}{% endblock %}
-{% if user.is_authenticated %}{% endif %} +{% if user.is_authenticated and request.resolver_match.url_name == 'index' %}{% endif %}