Amélioration UX nouveaux tags

This commit is contained in:
Jean-Marie Favreau 2025-04-21 00:06:38 +02:00
parent 102fbdb880
commit 6a5ef67811
3 changed files with 8 additions and 5 deletions

View File

@ -285,7 +285,7 @@ class EventForm(GroupFormMixin, ModelForm):
"Create new labels (sparingly). Note: by starting your tag with the characters “TW:”, you"
"ll create a “trigger warning” tag, and the associated events will be announced as such."
),
widget=DynamicArrayWidget(),
widget=DynamicArrayWidgetTags(),
required=False,
)
@ -489,7 +489,7 @@ class EventModerateForm(ModelForm):
"Create new labels (sparingly). Note: by starting your tag with the characters “TW:”, you"
"ll create a “trigger warning” tag, and the associated events will be announced as such."
),
widget=DynamicArrayWidget(),
widget=DynamicArrayWidgetTags(),
required=False,
)

View File

@ -1,16 +1,18 @@
{% load static %}
{% load i18n %}
{% load utils_extra %}
{% spaceless %}
<div class="related-widget-wrapper">
<div class="dynamic-array-widget">
<ul>
{% for subwidget in widget.subwidgets %}
<li {% if widget.is_none %}data-isNone="true" class="array-item hidden"{% else %}class="array-item"{% endif %}>
<li {% if widget.is_none %}data-isNone="true"{% endif %}
class="array-item">
{% with widget=subwidget %}
{% include widget.template_name %}
{% endwith %}
<div class="remove">
<div class="inline-deletelink"></div>
<div class="inline-deletelink">{% picto_from_name "x-circle" %}</div>
</div>
</li>
{% endfor %}

View File

@ -6,7 +6,8 @@
<div class="dynamic-array-widget">
<ul>
{% for subwidget in widget.subwidgets %}
<li {% if widget.is_none %}data-isNone="true" class="array-item"{% else %}class="array-item"{% endif %}>
<li {% if widget.is_none %}data-isNone="true"{% endif %}
class="array-item">
{% with widget=subwidget %}
{% include widget.template_name %}
{% endwith %}