semantic fix (Unassign --> Unassigned)

This commit is contained in:
Benbb96
2025-08-06 14:36:31 +02:00
committed by GitHub
parent 50c071adb1
commit f02737c738

View File

@@ -161,7 +161,7 @@
<dt><label for='id_owner'>{% trans "Owner" %}</label></dt>
<dd>
<select id='id_owner' name='owner'>
<option value='0'>{% trans "Unassign" %}</option>
<option value='0'>{% trans "Unassigned" %}</option>
{% for u in assignable_users %}
<option value='{{ u.id }}'{% if u.id == ticket.assigned_to.id %} selected{% endif %}>{{ u }}</option>
{% endfor %}