mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-08-19 04:06:23 +02:00
update dropdown formatting for bootstrap4
This commit is contained in:
@@ -89,7 +89,7 @@
|
||||
|
||||
<div class="d-flex align-items-center gap-2">
|
||||
<div class="input-group input-group-sm" style="width: auto;">
|
||||
<select name="owner" class="form-select">
|
||||
<select name="owner" class="form-control">
|
||||
<option value="0" {% if not ticket.assigned_to %} disabled selected{% endif %}>
|
||||
{% trans "Unassigned" %}
|
||||
</option>
|
||||
@@ -99,15 +99,20 @@
|
||||
</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
<button class="btn btn-primary btn-sm" type="submit" data-bs-toggle="tooltip" title="{% trans "Save ticket assignment" %}">
|
||||
|
||||
<div class="input-group-append">
|
||||
<button class="btn btn-primary btn-sm" type="submit" data-toggle="tooltip"
|
||||
title="{% trans 'Save ticket assignment' %}">
|
||||
<i class="fas fa-user-check"></i>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<span class="text-muted px-1">|</span>
|
||||
|
||||
<!-- self assign hand -->
|
||||
<a class="btn btn-primary btn-sm" data-toggle="tooltip" href="?take" title="{% trans 'Assign this ticket to ' %}{{ request.user.email }}">
|
||||
<a class="btn btn-primary btn-sm" data-toggle="tooltip" href="?take"
|
||||
title="{% trans 'Assign this ticket to ' %}{{ request.user.email }}">
|
||||
<i class="fas fa-hand-paper"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user